首页 > 解决方案 > 如何在 JavaScript 对象中存储 Fetch API JSON 响应

问题描述

我想将 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。

标签: javascriptjsonapifetch-api

解决方案


您还可以使用如下函数:

 function doSomething(success){
   //do whatever you like
 }

 fetch('http://localhost:3000/api/todos')
    .then(data => data.json())
    .then(success => doSomething(success));

推荐阅读