📅  最后修改于: 2022-03-11 15:01:36.133000             🧑  作者: Mango
fetch('people.json')
.then(function (response) {
return response.json();
})
.then(function (data) {
appendData(data);
})
.catch(function (err) {
console.log(err);
});