260

我正在使用 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数组。我仍然无法使用上面的代码检测到不存在的索引。

4

22 回答 22

497

利用typeof arrayName[index] === 'undefined'

IE

if(typeof arrayName[index] === 'undefined') {
    // does not exist
}
else {
    // does exist
}
于 2012-10-28T09:58:37.637 回答
92
var myArray = ["Banana", "Orange", "Apple", "Mango"];

if (myArray.indexOf(searchTerm) === -1) {
  console.log("element doesn't exist");
}
else {
  console.log("element found");
}
于 2013-09-12T17:35:49.543 回答
18

如果我错了,请有人纠正我,但AFAIK以下是正确的:

  1. 数组实际上只是 JS 引擎盖下的对象
  2. 因此,他们的原型方法hasOwnProperty“继承”自Object
  3. 在我的测试中,hasOwnProperty可以检查数组索引处是否存在任何内容。

因此,只要上述情况属实,您就可以简单地:

const arrayHasIndex = (array, index) => Array.isArray(array) && array.hasOwnProperty(index);

用法:

arrayHasIndex([1,2,3,4],4);输出:false

arrayHasIndex([1,2,3,4],2);输出:true

于 2019-04-03T20:21:12.927 回答
17

这些天我会利用 ecmascript 并像那样使用它

return myArr?.[index]
于 2021-03-05T11:59:52.367 回答
16

这正是in运营商的目的。像这样使用它:

if (index in currentData) 
{ 
    Ti.API.info(index + " exists: " + currentData[index]);
}

接受的答案是错误的,如果index值为undefined

const currentData = ['a', undefined], index = 1;

if (index in currentData) {
  console.info('exists');
}
// ...vs...
if (typeof currentData[index] !== 'undefined') {
  console.info('exists');
} else {
  console.info('does not exist'); // incorrect!
}

于 2019-10-01T13:49:23.247 回答
5

我不得不将 techfoobar 的答案包装在一个try..catch块中,如下所示:

try {
  if(typeof arrayName[index] == 'undefined') {
    // does not exist
  }
  else {
  // does exist
  }
} 
catch (error){ /* ignore */ }

...that's how it worked in chrome, anyway (otherwise, the code stopped with an error).

于 2013-08-09T14:00:07.930 回答
4

考虑数组 a:

var a ={'name1':1, 'name2':2}

如果要检查 a 中是否存在“name1”,只需使用以下命令对其进行测试in

if('name1' in a){
console.log('name1 exists in a')
}else
console.log('name1 is not in a')
于 2015-08-16T04:43:06.667 回答
3

If elements of array are also simple objects or arrays, you can use some function:

// search object
var element = { item:'book', title:'javasrcipt'};

[{ item:'handbook', title:'c++'}, { item:'book', title:'javasrcipt'}].some(function(el){
    if( el.item === element.item && el.title === element.title ){
        return true; 
     } 
});

[['handbook', 'c++'], ['book', 'javasrcipt']].some(function(el){
    if(el[0] == element.item && el[1] == element.title){
        return true;
    }
});
于 2015-01-22T12:42:15.700 回答
3
var demoArray = ['A','B','C','D'];
var ArrayIndexValue = 2;
if(ArrayIndexValue in demoArray){
   //Array index exists
}else{
   //Array Index does not Exists
}
于 2018-10-31T16:17:01.367 回答
2

如果你正在寻找这样的东西。

这是以下代码片段

var demoArray = ['A','B','C','D'];
var ArrayIndexValue = 2;
if(demoArray.includes(ArrayIndexValue)){
alert("value exists");
   //Array index exists
}else{
alert("does not exist");
   //Array Index does not Exists
}

于 2018-10-31T19:38:10.540 回答
2

var fruits = ["Banana", "Orange", "Apple", "Mango"];
if(fruits.indexOf("Banana") == -1){
    console.log('item not exist')
} else {
	console.log('item exist')
}

于 2019-05-27T06:54:05.387 回答
1

如果你使用underscore.js,那么这些类型的 null 和 undefined 检查会被库隐藏。

所以你的代码看起来像这样 -

var currentData = new Array();

if (_.isEmpty(currentData)) return false;

Ti.API.info("is exists  " + currentData[index]);

return true;

它现在看起来更具可读性。

于 2014-05-29T19:47:47.990 回答
1

检查项目是否存在的简单方法

Array.prototype.contains = function(obj) {
    var i = this.length;
    while (i--)
       if (this[i] == obj)
       return true;
    return false;
}

var myArray= ["Banana", "Orange", "Apple", "Mango"];

myArray.contains("Apple")
于 2016-11-23T14:21:12.773 回答
1

一行验证。最简单的方法。

return !!currentData[index];

输出

var testArray = ["a","b","c"]

testArray[5]; //output => undefined
testArray[1]; //output => "b"

!!testArray[5]; //output => false
!!testArray[1]; //output => true
于 2021-08-01T13:29:32.900 回答
1

当试图找出 JS 中是否存在数组索引时,最简单、最短的方法是通过双重否定。

let a = [];
a[1] = 'foo';
console.log(!!a[0])   // false
console.log(!!a[1])   // true
于 2019-09-30T13:56:22.067 回答
1

这种方式在我看来是最简单的。

var nameList = new Array('item1','item2','item3','item4');

// Using for loop to loop through each item to check if item exist.

for (var i = 0; i < nameList.length; i++) {
if (nameList[i] === 'item1') 
{   
   alert('Value exist');
}else{
   alert('Value doesn\'t exist');
}

也许另一种方法是。

nameList.forEach(function(ItemList)
 {
   if(ItemList.name == 'item1')
        {
          alert('Item Exist');
        }
 }
于 2015-12-31T23:07:15.683 回答
1
const arr = []

typeof arr[0] // "undefined"

arr[0] // undefined

如果布尔表达式

typeof arr[0] !== typeof undefined

为真则 0 包含在 arr 中

于 2019-10-16T09:10:10.797 回答
0

你可以简单地使用这个:

var tmp = ['a', 'b'];
index = 3 ;
if( tmp[index]){
    console.log(tmp[index] + '\n');
}else{
    console.log(' does not exist');
}
于 2015-07-21T15:23:30.223 回答
0
if(typeof arrayName[index] == undefined) {
    console.log("Doesn't exist")
}
else {
console.log("does exist")
}
于 2021-07-21T07:58:30.710 回答
0
(typeof files[1] === undefined)?
            this.props.upload({file: files}):
            this.props.postMultipleUpload({file: files widgetIndex: 0, id})

typeof使用and 检查数组中的第二项是否未定义undefined

于 2018-10-14T23:57:34.830 回答
0

这也可以正常工作,使用===against进行类型测试undefined

if (array[index] === undefined){ return } // True

测试:

const fruits = ["Banana", "Orange", "Apple", "Mango"];

if (fruits["Raspberry"] === undefined){
  console.log("No Raspberry entry in fruits!")
}

于 2020-02-02T08:46:42.020 回答
0

使用 Object.hasOwn()

数组的元素被认为是自己的属性,因此您可以使用新Object.hasOwn()方法以简短而优雅的方式检查特定索引是否存在,如下例所示:

let cars = ['Reno', 'Ford','Honda', 'BMW'];
console.log(Object.hasOwn(cars, 3));   // true ('BMW')
console.log(Object.hasOwn(cars, 4));   // false - not defined

于 2021-09-28T16:03:19.193 回答