angular4 怎么在子组件上双向绑定

发布于 2022-09-06 01:57:47 字数 922 浏览 5 评论 0

我是看到别人的代码实现双向绑定,但是我不知道怎么在子组件上接收这个值,求帮助,代码如下:

<h1>test</h1>
<div>
  <label for="username">heheda:</label>
  <input type="text" [(ngModel)]="username">
</div>
<app-test [(ngModel)]="username" ></app-test>

test.component.html

<div>
  <h2>test area</h2>
  <div>
    <label for="test"></label>
    <input type="text" [(ngModel)]='name'>
  </div>
</div>

test.component.ts

import { Component, OnInit, Input } from '@angular/core';

@Component({
  selector: 'app-test',
  templateUrl: './test.component.html',
  styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
  @Input('name') name = 'testName';
  constructor() { }

  ngOnInit() {
  }

}

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

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

发布评论

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

评论(1

巷雨优美回忆 2022-09-13 01:57:47

实现 ControlValueAccessorrating component

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文