2015-05-27 95 views
0

我在我的應用程序中使用兩個「核心動畫頁的」 一個是頁面導航,另一個是內部的核上動畫的頁面過渡高端功能

想裝入子元素的內容時核上動畫的頁面過渡端,但其在覈 - 動畫 - 網頁射擊

<core-animated-pages id="pages" on-core-animated-pages-transition-end="{{loadproductsgrid}}" selected="{{route}}" valueattr="hash" transitions="slide-from-right"> 
 
    <template repeat="{{page, i in pages}}"> 
 
    <section hash="{{page.hash}}" layout="vertical center-center "> 
 
     </section> 
 
     </template> 
 
</core-animated-pages>

哪有I LIM它這一個元素

回答

0

當事件被觸發,該函數被調用,您可以檢查活動對象ID的ID,看看哪些元素髮送事件

loadproductsgrid: function (event) { 
    if (event.target.id === 'pages') { 
    // will only fire if pages is the sending element 
    } 
} 

希望幫助

+0

謝謝爲你的答案,你可以看看這個** [http://stackoverflow.com/questions/30498186/polymer-load-product-page-data-from-json](http://stackoverflow.com/questions/30498186 /聚合物 - 負載 - 產品頁數據從 - JSON)** – Jijesh