angular4自定义组件非input元素实现ngModel双向数据绑定的方法
在angular里我们一般都是给input元素添加[(ngmodel)]="value"实现数据双向绑定,如果想实现自定义的组件上实现ngmodel双向数据绑定应该怎么办呐。。。
网上找了一下,没看懂记录一下。
场景:组件能获取父组件通过ngmodel绑定的值,能通过ngmodel改变父组件对应的数据。如下代码:
<app-child [(ngmodel])="appdata"></app-child>
1、先贴出效果图:
2、下面是app-child组件的代码:
import { component, forwardref } from '@angular/core'; import { controlvalueaccessor, ng_value_accessor } from '@angular/forms'; @component({ selector: 'app-child', templateurl: './child.component.html', styleurls: ['./child.component.css'], providers: [{ provide: ng_value_accessor, useexisting: forwardref(() => childcomponent), multi: true }] }) export class childcomponent implements controlvalueaccessor { constructor() { } _data: any; add () { this.childdata ++; } change = (value: any) => {}; // 先定义一个方法,很重要,用于接收registeronchange()方法里传递回来的方法,然后通过这个方法就能通知到外部组件数据更新。 set childdata(value: number) { // childdata被更改走该方法 this._data = value; this.change(this._data); // 将更新后的数据通知到外部组件 } get childdata() { // 页面或者方法里面有调用childdata就会走该方法 return this._data; } writevalue(val): void { // 初始化时,获取并监听父组件通过ngmodel传递进来的数据 if (val) { this._data = val; } } registeronchange(fn: any): void { // 初始化后,执行该方法,并保存控件接收到 change 事件后,调用的函数 this.change = fn; } registerontouched(fn: any): void { } }
3、下面开始说下实现的过程吧:
如果添加ngmodel后报如下错误,检查组件对应的module文件有没有导入formsmodule
import { formsmodule } from '@angular/forms'; @ngmodule({ ... imports: [ ..., formsmodule ], ... })
import formsmodule后,控制台任然会报错:
这是因为我们需要在使用ngmodel的组件里实现controlvalueaccessor的接口方法。
先引入和使用我们必须使用的配置:
import { component, forwardref } from '@angular/core'; import { controlvalueaccessor, ng_value_accessor } from '@angular/forms'; @component({ selector: 'app-child', templateurl: './child.component.html', styleurls: ['./child.component.css'], providers: [{ provide: ng_value_accessor, useexisting: forwardref(() => childcomponent), // 这里的组件名为当前组件的名字 multi: true }] }) export class childcomponent implements controlvalueaccessor { constructor() { } childdata = 2; }
处理完成后控制台的报错信息已经改变:
这是因为controlvalueaccessor的接口有几个必须存在的方法,会自动去调用:
writevalue(val): void { } registeronchange(fn: any): void { } registerontouched(fn: any): void { }
- 初始化的时候调用
writevalue()
方法,将会使用表单模型中对应的初始值作为参数(也就是ngmodel里的值)。 - registeronchange() 可以用来通知外部,组件已经发生变化。
- registerontouched() 方法用于设置当控件接收到 touched 事件后,调用的函数。
知道了这三个方法后,我们就可以在writevalue方法里给组件设置父组件通过ngmodel传递过来的值了。如:
writevalue(val): void { if (val) { this.childdata = val; } }
那么怎么将组件里更新的数据传递给父组件呐。
registeronchange(fn: any): void { // 初始化后,执行该方法,并保存控件接收到 change 事件后,调用的函数 this.change = fn; }
writevalue()方法后就会执行registeronchange()方法,我们就是通过该方法传递回来的方法参数来通知到外部组件数据更新的,所以我们要在最开始就定义一个方法来接收。
change = (value: any) => {}; // 先定义一个方法,很重要,用于接收registeronchange()方法里传递回来的方法,然后通过这个方法就能通知到外部组件数据更新。
然后就可以通过change方法通知外部组件了
set childdata(value: number) { // childdata被更改走该方法 this._data = value; this.change(this._data); // 将更新后的数据通知到外部组件 }
最开始贴出来的代码,中间使用了set 和get去处理了数据,在get childdata()方法里打断点发现会执行很多次该方法,其实也可以修改成通过更新数据的时候就直接调用change()方法来通知外部组件数据更新,如下:
import { component, forwardref } from '@angular/core'; import { controlvalueaccessor, ng_value_accessor } from '@angular/forms'; @component({ selector: 'app-child', templateurl: './child.component.html', styleurls: ['./child.component.css'], providers: [{ provide: ng_value_accessor, useexisting: forwardref(() => childcomponent), multi: true }] }) export class childcomponent implements controlvalueaccessor { constructor() { } _data: any; childdata = 1; add () { this.childdata ++; this.change(this.childdata); } change = (value: any) => {}; // 先定义一个方法,很重要,用于接收registeronchange()方法里传递回来的方法,然后通过这个方法就能通知到外部组件数据更新。 writevalue(val): void { // 初始化时,获取并监听父组件通过ngmodel传递进来的数据 if (val) { this.childdata = val; } } registeronchange(fn: any): void { // 初始化后,执行该方法,并保存控件接收到 change 事件后,调用的函数 this.change = fn; } registerontouched(fn: any): void { } }
中间不用使用get和set,不知道两种方法哪种更好。
其实通过子组件通知父级组件数据更新,可以使用@input和@output来实现的,如果是@input获取的父级组件的数据,父级组件数据更新,子组件需要在ngonchanges生命周期里去监听对应的数据变更并处理相应的逻辑。
不过在自定义组件上使用ngmodel实现数据的双向绑定还可以用作表单处理上,比如表单模板和表单验证。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。