如何在 JavaScript 对象中存储 Fetch API JSON 响应
How to Store Fetch API JSON Response in a JavaScript Object
我想将 Fetch API JSON 存储为 JavaScript 对象,以便我可以在其他地方使用它。 console.log 测试有效,但我无法访问数据。
以下作品:它显示了包含三个待办事项的控制台条目:
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => console.log(success));
以下不起作用:
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => JSON.parse(success));
如果我尝试访问成功,它不包含任何数据。
已尝试 console.log,效果很好。
也试过以下方法,有效:
fetch('http://localhost:3000/api/todos')
.then(res => res.json())
.then(data => {
let output = '';
data.forEach(function (todo) {
output += `
<ul>
<li>ID: ${todo.id}</li>
<li>Title: ${todo.title}</li>
<li>IsDone: ${todo.isdone}</li>
</ul>
`;
});
document.getElementById('ToDoList').innerHTML = output;
return output;
})
.catch(err => console.log('Something went wrong: ', err));
但是,我无法手动更新内部HTML;我需要该对象来执行其他 UX。
你可以像下面这样使用 async await
async function consumingFunc () {
let response = await fetch('http://localhost:3000/api/todos')
console.log(response)
}
consumingFunc()
您还可以使用如下函数:
function doSomething(success){
//do whatever you like
}
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => doSomething(success));
您可以只在外部声明一个变量,然后像这样将结果赋值给它
var yourTodos;
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => yourTodos = success);
然后您将 yourTodos
作为您的 javascript 对象,您可以随意使用它。
我想将 Fetch API JSON 存储为 JavaScript 对象,以便我可以在其他地方使用它。 console.log 测试有效,但我无法访问数据。
以下作品:它显示了包含三个待办事项的控制台条目:
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => console.log(success));
以下不起作用:
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => JSON.parse(success));
如果我尝试访问成功,它不包含任何数据。
已尝试 console.log,效果很好。
也试过以下方法,有效:
fetch('http://localhost:3000/api/todos')
.then(res => res.json())
.then(data => {
let output = '';
data.forEach(function (todo) {
output += `
<ul>
<li>ID: ${todo.id}</li>
<li>Title: ${todo.title}</li>
<li>IsDone: ${todo.isdone}</li>
</ul>
`;
});
document.getElementById('ToDoList').innerHTML = output;
return output;
})
.catch(err => console.log('Something went wrong: ', err));
但是,我无法手动更新内部HTML;我需要该对象来执行其他 UX。
你可以像下面这样使用 async await
async function consumingFunc () {
let response = await fetch('http://localhost:3000/api/todos')
console.log(response)
}
consumingFunc()
您还可以使用如下函数:
function doSomething(success){
//do whatever you like
}
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => doSomething(success));
您可以只在外部声明一个变量,然后像这样将结果赋值给它
var yourTodos;
fetch('http://localhost:3000/api/todos')
.then(data => data.json())
.then(success => yourTodos = success);
然后您将 yourTodos
作为您的 javascript 对象,您可以随意使用它。