ng-show 仅适用于 meanjs 中的管理员。
ng-show only for admin in meanjs.
在 view.article.view.html
中,我只想在经过身份验证的用户是管理员时显示 html 标签。我试过像下面那样做,但是没有用。
<p ng-show="vm.authentication.user.roles=admin">show only for admin </p>
ng-show="vm.authentication.user.roles=admin"
应该是
ng-show="vm.authentication.user.roles=='admin'"
或 ===
在 view.article.view.html
中,我只想在经过身份验证的用户是管理员时显示 html 标签。我试过像下面那样做,但是没有用。
<p ng-show="vm.authentication.user.roles=admin">show only for admin </p>
ng-show="vm.authentication.user.roles=admin"
应该是
ng-show="vm.authentication.user.roles=='admin'"
或 ===