1
dom-repeat (Polymer 1.0.0-rc.17)에 의해 생성 된 목록의 항목에 대한 버튼 클릭 이벤트를 수신하는 다음 코드 스 니펫이 있습니다. polymer.dart change.log에 따르면 DomRepeatModel.item is now deprecated, although it will properly use the as attribute for now. The [] operator has been added in its place
입니다. 누구든지 코드에 적용하여 동일한 결과를 얻는 방법을 알고 있습니까?DomRepeatModel.item을 바꾸는 방법?
@reflectable
handlePurchase(event, [_]) {
print('Purchase item');
var model = new DomRepeatModel.fromEvent(event);
ShopItem item = model.item;
print(item.name);
print(item.price);
}