正确使用带有长条件的ng show

xjreopfe  于 2021-09-29  发布在  Java
关注(0)|答案(0)|浏览(123)

我在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 ?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题