2015-05-30 184 views
5

我在Polymer 0.5上使用此代碼,但在聚合物1.0上它不起作用。聚合物1.0自定義事件

在子元素:

this.fire('login-start', { 
    username: this.username, 
    password: this.password, 
    me: this 
}); 

在父元素(APP-main.html中):

<dom-module name="app-main" on-login-start="{{checkLogin}}"> 

而且在App-main.js:

checkLogin: function() { 
    alert("This is not working."); 
} 

怎麼辦我在Polymer 1.0中觸發並捕獲自定義事件?

回答

9

您應該從on-login-start刪除雙括號({{}})

<dom-module name="app-main" on-login-start="checkLogin"> 

Here是文檔。

+0

感謝它的工作。 – paphonb

相關問題