angular 模拟[(ngModel)]的双向绑定 报错

发布于 2022-09-12 04:26:51 字数 1950 浏览 21 评论 0

代码如下

  1. app
<!-- app.component.html -->
<app-horizontal-grid 
    [(username)]="username"
></app-horizontal-grid>

[(username)]="username"位置报错:

ERROR in src/app/app.component.html:11:22 - error NG8002: Can't bind to 'username' since it isn't a known property of 'app-horizontal-grid'.

  1. If 'app-horizontal-grid' is an Angular component and it has 'username' input, then verify that it is part of this module.
  2. If 'app-horizontal-grid' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
  3. To allow any property add 'NO_ERRORS_SCHEMA' to the '@NgModule.schemas' of this component.
// app.component.ts
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  username = '';
}
  1. 子组件
<!-- horizontal-grid.component.html -->`
<input 
    type="text" 
    [value]="username" 
    (input)="username = $event.target.value"
>
<span>
    hello, {{username}}
</span>
// horizontal-grid.component.ts
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-horizontal-grid',
  templateUrl: './horizontal-grid.component.html',
  styleUrls: ['./horizontal-grid.component.css']
})
export class HorizontalGridComponent implements OnInit {
  private _username: string = '';
  @Output() usernameChange = new EventEmitter();

  constructor() { }

  ngOnInit(): void {
  }

  public get username(): string {
    return this._username;
  }

  public set username(value: string) {
    this._username = value;
    this.usernameChange.emit(value);
  }

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2022-09-19 04:26:51

ERROR in src/app/app.component.html:11:22 - error NG8002: Can't bind to 'username' since it isn't a known property of 'app-horizontal-grid'.

src/app/app.component.html:11行22列发生严重错误 ---- 错误代码:NG8002: m由于'username'并不是'app-horizontal-grid'属性,所以无法绑定。

所以原因发生在app-horizontal-grid的input上,查看该组件发现的确没有声明该input,请尝试添加@Input()注解。

@Input()
 public set username(value: string) {
   this._username = value;
   this.usernameChange.emit(value);
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文