当我收到来自 ajax 请求的响应时,我使用了代码,类似于:
success: function(results) {
if(results.locations){
//do stuff here
}else if(results.error){
//do stuff here
}else if(results.matched === 0){
//do stuff here
}else{
// else do stuff here
}
}
是否可以将其更改为 switch 语句?(结果是一个 JSON 数组)