我有一个像这样的控制器设置:
.controller( 'ProductsCtrl', function ProductsController( $scope, ProductRes, $state, $http ) {
$scope.updateThing = function() {
$scope.thing = true;
};
...
在我看来:
<button ng-click='updateThing()'>CLICK THIS TO HIDE THE P</button>
<p ng-hide="{{thing}}">hide this when button clicked</p>
我的其他绑定工作,如输入过滤器,什么不是。所以,它告诉我这个特定的设置有问题......
答案 0 :(得分:6)
应该是ng-hide="thing"
,afaik
答案 1 :(得分:2)
更改
ng-hide="{{thing}}"
到此:
ng-hide="thing"