gpt4 book ai didi

javascript - 尝试从 json 文件中获取数据时出现问题

转载 作者:行者123 更新时间:2023-12-02 05:19:40 24 4
gpt4 key购买 nike

我在尝试获取数据时遇到了一些问题,我没有得到响应。我写的路径正确吗?我附上了我的项目层次结构的部分代码和图片。

let transportation = [];


const init = () => {
fetch('/data/transportationDataCheck.json')
.then((response) => {
return response.json();
})
.then((data) => {
transportation = data;
}).then(() => {
renderList(transportation);
});
};

enter image description here

最佳答案

试试这个:

const data = require("../data/transportationDataCheck.json")
console.log(JSON.stringify(data));

或者你可以改个小URL试试

let transportation = [];


const init = () => {
fetch('../data/transportationDataCheck.json')
.then((response) => {
return response.json();
})
.then((data) => {
transportation = data;
}).then(() => {
renderList(transportation);
});
};

关于javascript - 尝试从 json 文件中获取数据时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60787208/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com