我尝试了这个,但是它不起作用,在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

10-06 05:15