这是我的目标:
var charsObj = {"drive":{"status":"inprogress","data":"some data","history":"the text of my history"}}
function getNote(x) {
if ( x in charsObj) {
console.log(charsObj[x])
} else {
console.log('nothing', charsObj[x])
}
}
如果我调用getNote('drive')
,它会按预期返回我的对象值,除非iOS返回'nothing', undefined
。
如何让它在iOS上运行?