angularjs2中父子组件的数据传递的实例代码
程序员文章站
2022-11-26 14:53:24
父到子组件之间的数据传递
父组件模板中引用子组件
// father template: ...
父到子组件之间的数据传递
父组件模板中引用子组件
// father template: ... <child-item [name] = "fatheritemname" > </child-item> //...`
其中”fatheritemname” 为父组件中的属性,[name] 为子组件的输入
在子组件中使用 @input() name 来接受父组件传递的值
如果在接收值前需要进行一些处理,可以使用setter 拦截输入属性
_name: string = ''; @input() set namestr(name: string){ _name = "father name:" + name; }
这时的 _name 作为临时变量,作为set 和get的中转。
父组件中:
< child-item [namestr] = “fatheritemname” >
name -> namestr
使用getter 输出
get namestr(){ return _name; }
插值时 {{ namestr }}
子到父组件之间的数据传递
1. 事件传值
// father template: ... <child-item (childevent) = "fatherfunction($event)"> </child-item> //... export class fathercomponent{ fatherfunction(){ alert('hello!'); } }
子组件
//... < p (click) = "clickthis"> click </ p> //... @output() childevent = new eventemitter<boolean>(); clickthis(){ this.childevent.emit(); }
2.父组件通过局部变量获取子组件的引用
<child-item [name] = "fatheritemname" #name > </child-item>
子组件通过#绑定一个name的局部变量来访问子组件的属性
3.使用@viewchild 获取子组件的引用
@viewchild(childcomponent) child: childcomponent;
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Vue的Flux框架之Vuex状态管理器