gpt4 book ai didi

javascript - 如何在 javascript 中格式化 JSON 输出

转载 作者:行者123 更新时间:2023-11-30 11:34:57 30 4
gpt4 key购买 nike

我有这个函数可以获取 JSON 对象。

function dataFetch(){
const url = "http://www.quotzzy.co/api/quote?key=436587";

fetch(url).then(function(response) {
return response.text();
}).then(function(text) {
console.log('Request successful', text);
}).catch(function(error) {
log('Request failed', error)
});
};

如何单独返回 JSON 对象中的索引以在 HTML 中使用?

例如,我的名字 (object.name) 和我的引语是 (object.text) 来自这个来源 (object.source) .

最佳答案

在响应中使用 json()。它返回对象的 promise 。

function dataFetch(){
const url = "http://www.quotzzy.co/api/quote?key=436587";

fetch(url)
.then(function(response) {
return response.json();
})
.then(function(json) {
console.log(json.author.name);
});
.catch(function(error) {
log('Request failed', error)
});
}

更地道:

function dataFetch(){
const url = "http://www.quotzzy.co/api/quote?key=436587";

fetch(url)
.then(response => response.json())
.then(json => console.log(json.author.name, "said", json.text))
.catch(error => log('Request failed', error));
}

关于javascript - 如何在 javascript 中格式化 JSON 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44873709/

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