AngularJS:ng-show/ng-hide

我试图显示/隐藏一些HTML使用ng-show和ng-hide提供的功能 AngularJS

根据文档,这些功能的相应用法如下:

ngHide – {expression} – If the expression truthy then the element is shown or hidden respectively.
ngShow – {expression} – If the expression is truthy then the element is shown or hidden respectively.

这适用于以下usecase:

<p ng-hide="true">I'm hidden</p>
<p ng-show="true">I'm shown</p>

但是,如果我们使用来自对象的参数作为表达式,那么ng-hide和ng-show将被赋予正确的true / false值,但这些值不会被视为布尔值,因此始终返回false:

资源

<p ng-hide="{{foo.bar}}">I could be shown,or I could be hidden</p>
<p ng-show="{{foo.bar}}">I could be shown,or I could be hidden</p>

结果

<p ng-hide="true">I should be hidden but I'm actually shown</p>
<p ng-show="true">I should be shown but I'm actually hidden</p>

这是一个错误或我没有这样做正确。

我找不到任何相关的信息引用对象参数作为表达式,所以我希望任何人更好地了解AngularJS可能能够帮助我吗?

foo.bar引用不应包含大括号:
<p ng-hide="foo.bar">I could be shown,or I could be hidden</p>
<p ng-show="foo.bar">I could be shown,or I could be hidden</p>

角度expressions需要在卷曲括号绑定,其中作为Angular directives不。

参见Understanding Angular Templates

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...