通过属性引用获取对象值不适用于iOS

时间:2014-09-24 19:02:27

标签: javascript ios object ios7 mobile-safari

这是我的目标:

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上运行?

0 个答案:

没有答案