-2

我有这样的一行代码

$scope.selectItem.push(item['id']);

现在我想检查$scope.selectItem 中是否存在item['id']拼接它。

任何想法 光荣的

4

1 回答 1

1

另一种可能的解决方案:

if ($scope.selectItem.indexOf(item['id']) !== -1) // it exists
于 2013-07-11T09:39:51.290 回答