angular2类型错误:self._el_11不是函数



我想添加事件监听器输入,这是我的代码

<input ref-search (keyup)="search(search.value)">

,搜索方法为

search(condition: string){
    console.log(condition);
}

那么当我输入一些东西时,浏览器控制台日志是

TypeError: self._el_11 is not a function
at AppView._View_YwCoffeeListComponent0._handle_click_11_0 (YwCoffeeListComponent.ngfactory.js:217)
at platform-browser.umd.js:1854
at platform-browser.umd.js:1967
at ZoneDelegate.invoke (zone.js:192)
at Object.NgZoneImpl.inner.inner.fork.onInvoke (core.umd.js:8772)
at ZoneDelegate.invoke (zone.js:191)
at Zone.runGuarded (zone.js:99)
at NgZoneImpl.runInnerGuarded (core.umd.js:8805)
at NgZone.runGuarded (core.umd.js:9038)
at HTMLInputElement.i (platform-browser.umd.js:1967)

和YwCoffeeListComponent.ngfactory.js:217代码

_View_YwCoffeeListComponent0.prototype._handle_click_11_0 = function($event) {var self = this;self.markPathToRootAsCheckOnce();var pd_0 = (self._el_11(self._el_11.value) !== false);return (true && pd_0);};

这是因为您使用与方法相同的名称定义了模板引用变量。

所以改成:

<input ref-searchInput (keyup)="search(searchInput.value)">

相关内容

  • 没有找到相关文章

最新更新