<?php echo $this->welcome->getWelcome(); ?>
<?php echo $this->welcome->getAddress(); ?>
<?php echo $this->welcome->getMap(); ?>
我遇到了以下错误
<polymer-element name="hover-button" extends="paper-button" hover?="{{hover}}" attributes="hover">
仍然在Polymer 0.5。 这是完整的代码:
Uncaught InvalidCharacterError: Failed to execute 'setAttribute' on 'Element': 'hover?' is not a valid attribute name.
答案 0 :(得分:0)
您无法在<polymer-element>
本身使用数据绑定功能。此外,默认情况下,<polymer-element>
上声明的任何属性(不属于属性attribute
的属性都会添加到元素的实例中。我怀疑这是错误的来源。