我想通过单击按钮来显示或隐藏部分.我不想在控制器中创建变量.有没有办法通过使用本地模板变量(使用#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.
你不能这样做,因为模板变量button
在你声明它时会存储整个元素,但你可以在这里利用三元运算符:
This should be shown or hidden on click of the button.
如果showSection1
未定义或具有错误值,则将其设置为true,反之亦然.
这是工作的Plunker.