作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 AngularJS 提供的 ng-show
和 ng-hide
函数显示/隐藏一些 HTML .
根据文档,这些函数各自的用法如下:
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.
这适用于以下用例:
<p ng-hide="true">I'm hidden</p>
<p ng-show="true">I'm shown</p>
但是,如果我们使用对象中的参数作为表达式,那么 ng-hide
和 ng-show
会被赋予正确的 true
/false
值,但这些值不被视为 bool 值,因此始终返回 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>
Angular expressions需要在大括号绑定(bind)中,其中 Angular directives不要。
关于AngularJS:ng-show/ng-hide 不适用于 `{{ }}` 插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16625787/
我是一名优秀的程序员,十分优秀!