我想做这样的事情。
<h3 ng-show="{{mode == 'create'}}">Create Vacancy</h3>
<h3 ng-show="{{mode == 'edit'}}">Edit this Vacancy</h3>
$scope.mode
是“创建”还是“编辑”。
我该怎么做?我正在尝试的任何工作都没有。
答案 0 :(得分:22)
ng-show
本身就是表达式,所以不要使用插值文本。将您的代码更新为:
<h3 ng-show="mode == 'create'">Create Vacancy</h3>
<h3 ng-show="mode == 'edit'">Edit this Vacancy</h3>