显示 {{ 值 }} AngularJS 1.6 中的特殊值除外
Show {{ value }} except special one in AngularJS 1.6
在 SPAN 之后点击我的 DIV 得到这个类别标题,但在一种情况下,当 category.title 是 'Favorite'(或 category.id = '1',它是相同)我需要在 DIV 中忽略它并且不要更改它的值。
我怎样才能意识到这一点?
提前致谢
我的 HTML :
<div> {{ selections.category.title }} </div>
<span ng-repeat="category in categories track by category.id" ng-click="selectCategory(category)">
...
</span>
我的控制器:
$scope.selectCategory = function selectCategory(category) {
$scope.selections.category = category;
...
}
编辑。
我只需要在 DIV 的文本中忽略它,而不是忽略单击此元素。
<div> {{ selectedTitle }} </div>
$scope.selectCategory = function selectCategory(category) {
if(category.title !== 'Favorite' && category.id !== '1') {
$scope.selectedTitle = category.title;
}
$scope.selections.category = category;
...
}
在 SPAN 之后点击我的 DIV 得到这个类别标题,但在一种情况下,当 category.title 是 'Favorite'(或 category.id = '1',它是相同)我需要在 DIV 中忽略它并且不要更改它的值。
我怎样才能意识到这一点? 提前致谢
我的 HTML :
<div> {{ selections.category.title }} </div>
<span ng-repeat="category in categories track by category.id" ng-click="selectCategory(category)">
...
</span>
我的控制器:
$scope.selectCategory = function selectCategory(category) {
$scope.selections.category = category;
...
}
编辑。
我只需要在 DIV 的文本中忽略它,而不是忽略单击此元素。
<div> {{ selectedTitle }} </div>
$scope.selectCategory = function selectCategory(category) {
if(category.title !== 'Favorite' && category.id !== '1') {
$scope.selectedTitle = category.title;
}
$scope.selections.category = category;
...
}