我尝试了这个,但是它不起作用,在javascript中未定义parentIndex值
_addAttribute: function(e) {
console.log(e.model.parentIndex);
}
I wrote html like this
<paper-button on-tap="_addAttribute(this.parentIndex)">Add</paper-button>
<template id="[[count]]" is="dom-repeat" items="{{parameters}}" index-as="parentIndex" restamp>
最佳答案
您需要删除this.parentIndex
元素中的paper-button
,例如:
<paper-button on-tap="_addAttribute">Add</paper-button>
您仍将在函数内添加
e
属性。Polymer不支持发送像JS这样的功能。只是控制台日志
e.model