Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

read json file javascript

fetch("file.json")
    .then(Response => Response.json())
    .then(data => {
        console.log(data);
  		// or whatever you wanna do with the data
    });
Comment

read json from file js

const fs = require('fs');

fs.readFile('./customer.json', 'utf8', (err, jsonString) => {
  if (err) {
    console.log("File read failed:", err)
    return 
  }
  console.log('File data:', jsonString)
})
Comment

read json file into object javascript

fs.readFile(filePath, function (error, content) {
    var data = JSON.parse(content);
    console.log(data.collection.length);
});
Comment

js read file json

fs.readFile(filePath, function (error, content) {
    var data = JSON.parse(content);
    console.log(data.collection.length);
});
Comment

Read JSON File JavaScript

// read remote JSON file in javascript
fetch("https://jsonplaceholder.typicode.com/users")
  .then(function (response) {
    return response.json();
  })
  .then(function (data) {
    for (let i = 0; i < data.length; i++) {
      console.log(data[i]);
    }
  })
Comment

read json file javascript

// using Promise 
fetch("my.json") 
	.then(response => response.json()) 
	.then(parsed => /* parsed contains the parsed json object */); 
 
// or if you can use async/await 
let response = await fetch("my.json"); 
let parsed = await response.json();
Comment

read json file javascript

// using Promise 
fetch("my.json") 
	.then(response => response.json()) 
	.then(parsed => /* parsed contains the parsed json object */); 
 
// or if you can use async/await 
let response = await fetch("my.json"); 
let parsed = await response.json();
Comment

javascript read json from file

<script type="text/javascript" src="data.json"></script>
<script type="text/javascript" src="javascrip.js"></script>
Comment

read json file javascript

// using Promise 
fetch("my.json") 
	.then(response => response.json()) 
	.then(parsed => /* parsed contains the parsed json object */); 
 
// or if you can use async/await 
let response = await fetch("my.json"); 
let parsed = await response.json();
Comment

read json file javascript

// using Promise 
fetch("my.json") 
	.then(response => response.json()) 
	.then(parsed => /* parsed contains the parsed json object */); 
 
// or if you can use async/await 
let response = await fetch("my.json"); 
let parsed = await response.json();
Comment

access json file from JS file

Using fetch function
Code to access employees.json using fetch function −

fetch("./employees.json")
.then(response => {
   return response.json();
})
.then(data => console.log(data));
Comment

PREVIOUS NEXT
Code Example
Javascript :: jquery toggle text on click 
Javascript :: knex.js count 
Javascript :: js for in object 
Javascript :: node redisjson get properties of array object 
Javascript :: eas build apk 
Javascript :: how to change text to italic in javascript 
Javascript :: toast in react native 
Javascript :: javascript store text file into string 
Javascript :: how to create a folder in node js 
Javascript :: get execution time in javascript 
Javascript :: get all links from html javascript 
Javascript :: cannot use import statement outside a module in jest 
Javascript :: javascript run two functions at the same time 
Javascript :: react img not showing 
Javascript :: do while loop 
Javascript :: validate zip code javascript 
Javascript :: javascript clear all cookies 
Javascript :: multiple value selected in select2 
Javascript :: see all functions in a website with console 
Javascript :: joi validation custom message in node 
Javascript :: jquery to br 
Javascript :: get current time epoch javascript 
Javascript :: how to compare strings in javascript ignoring case sensitive 
Javascript :: how to install react router dom 
Javascript :: how to create a random number generator in javascript 
Javascript :: javascript date method 
Javascript :: copy variable value javascript 
Javascript :: ejs variable 
Javascript :: html javascript type 
Javascript :: convert model object to json django 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =