我想在我的html属性
中使用我的note对象的属性<div id="disco-grid">
<template repeat="{{note in _notes}}">
<disco-pad note="{{note.midi}}"></disco-pad>
</template>
</div>
代码
"{{note.midi}}"
未评估,只是将其作为字符串返回,我该怎么做?
答案 0 :(得分:1)
您的代码是正确的。确保在元素中指定了note属性
<polymer-element name="disco-pad" attributes="note">
如果仍然无效,请尝试在javascript文件中创建_notes的存根
Polymer({
_notes: {
midi: 'something'
}
});