当前位置:  开发笔记 > 编程语言 > 正文

如何在角度2中创建布尔模板变量?

如何解决《如何在角度2中创建布尔模板变量?》经验,为你挑选了1个好方法。

我想通过单击按钮来显示或隐藏部分.我不想在控制器中创建变量.有没有办法通过使用本地模板变量(使用#variableName)来做到这一点?

我在想下面的事情.但为此,我得到了template parse error.

  
  

This should be shown or hidden on click of the button.

Stefan Svrko.. 7

你不能这样做,因为模板变量button在你声明它时会存储整个元素,但你可以在这里利用三元运算符:


This should be shown or hidden on click of the button.

如果showSection1未定义或具有错误值,则将其设置为true,反之亦然.

这是工作的Plunker.



1> Stefan Svrko..:

你不能这样做,因为模板变量button在你声明它时会存储整个元素,但你可以在这里利用三元运算符:


This should be shown or hidden on click of the button.

如果showSection1未定义或具有错误值,则将其设置为true,反之亦然.

这是工作的Plunker.


或者更短一点`(click)="showSection1 =!showSection1"`
推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有