我有一个Polymer元素,用于根据条件提供不同的HTML内容.
聚合物dom-if
没有其他条件,因此需要一个负的if条件来模拟它.
像这样的东西:
[[title]]
no title
With negative condition:
With positive condition:
只有这不起作用 - 负面条件永远不会通过.
该如何实施?
您必须为title属性使用默认空值:
title:{type: String,value:''}
像这样:
[[title]]
no title
With negative condition:
With positive condition: