欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angular自定义组件实现数据双向数据绑定的实例

程序员文章站 2022-04-05 09:09:04
学过angular的同学都知道,输入框通过[(ngmodel)]实现双向数据绑定,那么自定义组件能不能实现双向数据绑定呢?答案是肯定的。 angular中,我们常常需要通...

学过angular的同学都知道,输入框通过[(ngmodel)]实现双向数据绑定,那么自定义组件能不能实现双向数据绑定呢?答案是肯定的。

angular中,我们常常需要通过方括号[]和圆括号()实现组件间的交互:

Angular自定义组件实现数据双向数据绑定的实例

那么在[]()的基础上,如何实现组件的双向数据绑定?

例子如下。

子组件:

<!--testdatabinding.component.html-->

<h1>childstatus: {{childstatus}}</h1>
//testdatabinding.component.ts

export class testdatabindingcomponent implements oninit{
 @input() childstatus;
 @output() childstatuschange = new eventemitter();
 ngoninit(){
 settimeout(()=>{
  this.childstatus = false;
  this.childstatuschange.emit(this.childstatus);
 },5000);
 }
}

注意这里的写法,这是关键所在,输出属性前半部分必须与输入属性相同,输入属性可以随意取名,输出属性需在输入属性基础上加上change,比如你的输入属性是mydata,那么输出属性就必须是mydatachange。

父组件:

<!--app.component.html-->

<test-binding [(childstatus)]="parentstatus"></test-binding>
<h1>parentstatus: {{parentstatus}}</h1>
//app.component.ts

import { component,oninit } from '@angular/core';
@component({
 selector: 'my-app',
 templateurl: './app.component.html',
 styleurls: ['./app.component.css']
})
export class appcomponent implements oninit{
 parentstatus: boolean = true;
 ngoninit(){
 settimeout(()=>{
  this.parentstatus = true;
 },10000);
 }
}

在父组件我们初始化parentstatustrue,并把它传到子组件testdatabindingcomponent

在子组件里,5秒后我们把childstatus设为false,看它能不能传到父组件。再过5秒,我们在父组件将parentstatus设为true,看它能不能传到子组件。

Angular自定义组件实现数据双向数据绑定的实例

事实证明,子组件值变化后,父组件的值也跟着变化;父组件值变化后子组件的值也跟着变了!

我们实现了双向绑定!

查看本文代码和效果,可点击这里

以上这篇angular自定义组件实现数据双向数据绑定的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。