我在angular 1.8中有这个组件,我只想在`“isprofessor&&profile==='profile'”中显示一些内容。。。
<div class='user-details' ng-show='profile'>
<div ng-show="isprofessor && profile == 'profile'">
<span>A professor</span>
</div>
</div>
我这样称呼这个组件
<user-details profile='profile' isprofessor='true'></user-details>
<user-details profile='user' isprofessor='true'></user-details>
但是这个 ng-show="isprofessor && profile == 'profile'"
他什么也没做。
这不是你应该使用的方法吗 ng-show
?
暂无答案!
目前还没有任何答案,快来回答吧!