gpt4 book ai didi

events - Polymer 1.0 自定义事件

转载 作者:行者123 更新时间:2023-12-04 17:33:59 24 4
gpt4 key购买 nike

我在 Polymer 0.5 上使用此代码,但在 Polymer 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 中触发和捕获自定义事件?

最佳答案

您应该删除双括号 ({{}})从登录开始。

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

Here是文档。

关于events - Polymer 1.0 自定义事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30544290/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com