我編寫了一個小的普通 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); });
未捕獲(承諾中)語法錯誤:JSON 中位置 0 處出現意外標記 N
繁華開滿天機
2023-08-18 16:31:07