Если я вас правильно понимаю, то должна быть простая проверка, содержит ли массив что-то
[1,2,5].includes(stuff.id)
Рабочий пример
angular.module('app', [])
.controller('ctrl', function($scope) {
$scope.stuff = {
id: 5,
name: 'foo'
}
$scope.toggle = function() {
$scope.stuff.id = $scope.stuff.id === 5 ? 8 : 5;
}
});
{{stuff.name}}
stuff.id = {{stuff.id}}
Для
angular.module('app', [])
.controller('ctrl', function($scope) {
$scope.stuff = {
id: 5,
name: 'foo'
}
$scope.toggle = function() {
$scope.stuff.id = $scope.stuff.id === 5 ? 8 : 5;
}
});
-1">{{stuff.name}}
stuff.id = {{stuff.id}}