聚合物属性不在元素中

时间:2015-12-25 11:15:27

标签: javascript html dom polymer

我的代码:

<custom-x xy-user='online'></custom-x>

元素:

...
<div class='{{xyUser}}'></div>
...

Polymer({
    is: 'custom-x',

    properites: {
        xyUser: String
    }
});

但如果我运行代码并检查它,我唯一看到的是:

<div class='style-scope custom-x'></div>

我希望将在线视为课程。这怎么可能......


在此先感谢;)

1 个答案:

答案 0 :(得分:3)

像这样使用:

<div class$='{{xyUser}}'></div>

$=用于数据绑定。