JSON 文件示例(Hello.json):
[
{
"Name": "Alex Smith",
"User": "1234",
"Description": "Blue eyes"
},
{
这就是我所拥有的:
fetch('Hello.json')
.then(function (response) {
return response.json();
})
.then(function (data) {
var information = data.name[0];
$('#information').append(information);
有人可以解释一下我做错了什么或者是否有更好的方法来做到这一点?预先感谢
尝试:
var information = data[0].name;
你有一个对象数组,所以上面应该可以工作。
这是修改后的代码:
fetch('./Hello.json')
.then( response => response.json())
.then( data => {
var information = data[0].Name;
$('#information').append(information)
})
.catch( error => {
throw new error(`Error: ${error}`)
})
希望这有帮助:)