-2
我使用這個:JSON錯誤
var title = dataset[key]['title'];
console.log(title);
輸出上的console.log:
Object {0: "Here is the title"}
所以,當我這樣做:
var title = dataset[key]['title'][0];
console.log(title);
輸出上的console.log:
"Here is the title"
Uncaught TypeError: Cannot read property '0' of undefined
它適用於我。沒有未定義。檢查你的代碼。什麼是
? –
哎呦......爲
–
我也試過[0]和['0'] –