1
[達特+聚合物]聚合物 - 如何從紙張中獲取ID輸入?
您好,
我有在聚合物DOM重複模板PaperInput元件。所以,有幾個,@Listen等我嘗試獲取id,但它只檢索id =「labelAndInputContainer」(不管我在模板中做什麼)。
這有一些竅門嗎?我已經嘗試過「一切」 - 在過去的半天!
這裏是我的HTML:
<template is="dom-repeat" items={{rgetThem}}>
<paper-card heading={{yyyy(item)}} >
<div class="card-content" >
<p style="color:red">ID:{{getID(item)}}</p>
<paper-input on-change="onchangepassword"
label='Password'
id={{getID(item)}}
floatingLabel>
</paper-input>
</div>
和聽衆:
@Listen ('onchangepassword')
void onchangepassword(Event custEvent, var t) {
IronInput PI=custEvent.target;
Element yy=PI.parent;
String id=yy.id;
}
任何建議深受歡迎。
感謝
史蒂夫
https://www.polymer-project.org/1.0/docs/devguide/templates#handling-events。 Event.model.item.id –
這可能是Lymp之後的事情,但我的印象是Lymp提出了一個獲取引發事件的PaperInput的id的方法的問題。沒關係 :-) –