4

我想做这样的东西。

<h3 ng-show="{{mode == 'create'}}">Create Vacancy</h3>
<h3 ng-show="{{mode == 'edit'}}">Edit this Vacancy</h3>

$scope.mode“创建”或“编辑”在哪里。

我该怎么做呢?我正在尝试的任何方法都不起作用。

4

1 回答 1

23

ng-showevals 表达式本身,所以不要使用插值文本。将您的代码更新为:

<h3 ng-show="mode == 'create'">Create Vacancy</h3>
<h3 ng-show="mode == 'edit'">Edit this Vacancy</h3>
于 2013-09-20T05:55:06.140 回答