我正在使用聚合物0.8,據我瞭解有一個新的API,但我無法在任何地方找到對此問題的參考。我試圖做到這一點:如何在聚合物內容元素上設置點擊事件監聽器?
<center-focusable>
<template is="x-autobind">
<span on-click="setFocus">test?</span>
</template>
</center-focusable>
與錯誤了:
空[跨度] [點擊進入]:事件處理[的setFocus]的範圍是()
我的元素定義如下:
<dom-module id="center-focusable">
<template>
<span on-click="setFocus">I work</span>
<content></content>
</template>
</dom-module>
<script>
Polymer({
is: "center-focusable",
setFocus: function() {
console.log("test");
}
});
</script>
這不可能嗎?
我不知道8.0但不會函數調用需要句柄? on-click =「{{setFocus}}」 – 2015-04-04 20:16:40
@ jimidough10該API已更改:https://www.polymer-project.org/0.8/docs/migration.html#declarative-handlers – 2015-04-04 20:18:01
很有幫助。感謝鏈接我一直在想我在哪裏可以找到這個。 – 2015-04-04 20:22:29