第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

未捕獲(承諾中)語法錯誤:JSON 中位置 0 處出現意外標記 N

未捕獲(承諾中)語法錯誤:JSON 中位置 0 處出現意外標記 N

繁華開滿天機 2023-08-18 16:31:07
我編寫了一個小的普通 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);  });
查看完整描述

1 回答

?
當年話下

TA貢獻1890條經驗 獲得超9個贊

就是因為這個。


const config = {

  url: "https://randomuser.me/",

  numberCards: 24

};


fetch(`${config.url}&amount=${config.numberCards}`)

它應該是,


const config = {

  url: "https://randomuser.me/api/",

  numberCards: 24

};


fetch(`${config.url}?amount=${config.numberCards}`)

這是因為json數據來自“https://randomuser.me/api/”。不是“https://randomuser.me/”。并且查詢字符串必須以“?”開頭。標記?!?amp;”標記用于分隔查詢字符串。(像這樣“https://example.com/?amount=24&hi=en”)


查看完整回答
反對 回復 2023-08-18
  • 1 回答
  • 0 關注
  • 152 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號