我编写了一个小的普通 javascript 代码来获取 api,但它抛出错误“未捕获(承诺中)语法错误:JSON 中位置 0 处出现意外的标记 N”。我无法理解为什么会捕获错误。有人可以帮我解决这个问题吗?
const config = {
url: "https://randomuser.me/",
numberCards: 24
};
fetch(`${config.url}&amount=${config.numberCards}`)
.then(function(response) {
return response.json();
})
.then(function(apiResponse) {
// Output API response to console to view.
console.log(apiResponse);
});
当年话下
相关分类