最佳答案
我正在使用Titanium,我的代码看起来是这样的:
var currentData = new Array();
if(currentData[index]!==""||currentData[index]!==null||currentData[index]!=='null')
{
Ti.API.info("is exists " + currentData[index]);
return true;
}
else
{
return false;
}
我将一个索引传递给currentData
数组。使用上面的代码,我仍然无法检测到不存在的索引。