在JavaScript 中存取外部本地JSON 檔案
JSON(JavaScript 物件表示法)是一種流行的資料交換格式,它非常有用在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... });指定 JSON指定 JSON指定 JSON指定 JSON指定 JSON指定 JSON指定 JSON指定 長檔案路徑:透過執行下列步驟,您可以輕鬆地在 JavaScript 中存取外部本機 JSON 檔案並根據需要使用資料。
以上是如何使用 JavaScript 存取外部本機 JSON 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!