我有一个条件不同的价值客户:
对于第一个和第二个条件,我的json结构是这样的:
json:
fields:
customer [1]:
0 {3}:
self: aaa
value: yes
id: 111
最后一个条件是我的json结构:
json:
fields:
customer:null
我正在尝试做这样的事情:
var customer = json.fields.customer[0].value ;
var score3 = 0;
if(typeof customer == 'string'){
if(customer === "Yes"){
score3 = +10;
}
else if(customer === "No"){
score3 = +5;
}
}
else{
score3 = 0;
}
但是我遇到一个谁说:“无法读取属性'0'”的问题
感谢您的帮助
答案 0 :(得分:1)
您没有为客户检查null
var customer =
json.fields.customer != null && json.fields.customer.length > 0 ? json.fields.customer[0].value : null;