在 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... });
通过执行以下步骤,您可以轻松地在 JavaScript 中访问外部本地 JSON 文件并根据需要使用数据。
以上是如何使用 JavaScript 访问外部本地 JSON 文件?的详细内容。更多信息请关注PHP中文网其他相关文章!