I am trying to calculate the array and show the number on the dashboard. I tried to fetch('data/users.json)
but got an error that shows 0.
Need to calculate the id from two JSON files located at public folder inside data folder, you can see on the code below.
import React from 'react'
import '../Navbar/navbar.css'
import '../Dashboard/dashboard.css'
// import UserList from "./data/users.json"
const Dashboard = () => {
return (
<div>
<main>
<h1 className= "heading">Wele to Dashboard</h1>
{/* <p> User data list : {Object.keys(UserData).length}</p>
<p>Suscriber list: {Object.keys(Suscriber).length}</p> */}
<p>
Lorem
ipsum dolor sit, amet consectetur adipisicing elit. Placeat accusantium
rerum dolorem odio amet id blanditiis nobis incidunt consequuntur
molestiae doloribus corrupti quidem dolor ex, assumenda beatae dolore?
Voluptatem, ab?Lorem ipsum dolor sit amet consectetur, adipisicing elit.
</p>
<div className="users_view">
<div className="flexs">
<div className="total_users">
<h1>Total Users: {Object.keys(fetch('data/users.json')).length} </h1>
</div>
</div>
<div className="flexs">
<div className="total_users">
<h1>Subscribed user: {Object.keys(fetch('data/subscriptions.json')).length}</h1>
</div>
</div>
</div>
</main>
</div>
)
}
export default Dashboard
Below image is of directories:
Anyone help me to fetch those 2 JSON data and calculate the array number to display on the dashboard. Below images show the output:
I am trying to calculate the array and show the number on the dashboard. I tried to fetch('data/users.json)
but got an error that shows 0.
Need to calculate the id from two JSON files located at public folder inside data folder, you can see on the code below.
import React from 'react'
import '../Navbar/navbar.css'
import '../Dashboard/dashboard.css'
// import UserList from "./data/users.json"
const Dashboard = () => {
return (
<div>
<main>
<h1 className= "heading">Wele to Dashboard</h1>
{/* <p> User data list : {Object.keys(UserData).length}</p>
<p>Suscriber list: {Object.keys(Suscriber).length}</p> */}
<p>
Lorem
ipsum dolor sit, amet consectetur adipisicing elit. Placeat accusantium
rerum dolorem odio amet id blanditiis nobis incidunt consequuntur
molestiae doloribus corrupti quidem dolor ex, assumenda beatae dolore?
Voluptatem, ab?Lorem ipsum dolor sit amet consectetur, adipisicing elit.
</p>
<div className="users_view">
<div className="flexs">
<div className="total_users">
<h1>Total Users: {Object.keys(fetch('data/users.json')).length} </h1>
</div>
</div>
<div className="flexs">
<div className="total_users">
<h1>Subscribed user: {Object.keys(fetch('data/subscriptions.json')).length}</h1>
</div>
</div>
</div>
</main>
</div>
)
}
export default Dashboard
Below image is of directories:
Anyone help me to fetch those 2 JSON data and calculate the array number to display on the dashboard. Below images show the output:
Share Improve this question edited Aug 25, 2021 at 18:50 Unknown Beginner asked Aug 25, 2021 at 17:33 Unknown BeginnerUnknown Beginner 1931 gold badge4 silver badges14 bronze badges 4- 2 Please read How to Ask. The part about not posting pictures of text. – David Arias Commented Aug 25, 2021 at 17:36
- 1 please paste the code in the question – Giorgi Gvimradze Commented Aug 25, 2021 at 17:37
-
1
And read an introductory guide to
fetch
. It doesn't return synchronously parsed JSON. – Quentin Commented Aug 25, 2021 at 17:37 - okay, thanks! I was trying to place the directories image but I placed the whole SS. Sorry for that. – Unknown Beginner Commented Aug 25, 2021 at 18:52
2 Answers
Reset to default 7This is how I'd advice to import a json file:
import React from 'react'
export default function App() {
const [users,setUsers] = React.useState([{}])
React.useEffect(()=>{
fetch('data/users.json').then((res)=>res.json()).then((data)=>{
setUsers(data)
})
},[])
return (
<div className="App">
<h1>Users:{users.length}</h1>
</div>
);
}
this is the sample users.json
file:
[
{
"id": 1,
"name": "name"
},
{
"id": 2,
"name": "name 2"
}
]
this is the structure of the main directory:
Here is the code
you can try to import your JSON:
import data from 'data/users.json'
Then make a length of the data
Object.keys(data).length
or use JSON.parse
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742347122a4426768.html
评论列表(0条)