JavaScript에서 외부 로컬 JSON 파일 액세스
JSON(JavaScript Object Notation)은 데이터 교환에 널리 사용되는 형식이며 유용할 수 있습니다. JavaScript로 외부 로컬 파일에서 JSON 데이터를 읽습니다. 수행 방법은 다음과 같습니다.
fetch("path/to/json.json") .then(response => response.json()) .then(data => { // Use the JSON data as needed... }) .catch(error => { // Handle any errors here... });
const filePath = "/Users/Documents/workspace/test.json"; fetch(filePath) .then(response => response.json()) .then(data => { // Print the JSON data console.log(data.resource); console.log(data.literals); }) .catch(error => { // Handle any errors here... });
이 단계를 따르면 JavaScript로 외부 로컬 JSON 파일에 쉽게 액세스하고 필요에 따라 데이터로 작업할 수 있습니다.
위 내용은 JavaScript에서 외부 로컬 JSON 파일에 어떻게 액세스할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!