其他分享
首页 > 其他分享> > angular 如何获取模板页传过来的值

angular 如何获取模板页传过来的值

作者:互联网

1.了解Input 和OutPut

2.B页面引入 import { Component, OnInit, Output, EventEmitter } from '@angular/core';

3.B页面定义一个事件 @Output() refreshRes = new EventEmitter<any>();

4. 赋值 this.refreshRes.emit(val);

5.A页面调用 

6.A页面后台 onRefreshRes(val: any){

console.log(val);

}

标签:refreshRes,val,EventEmitter,传过来,Output,angular,模板,页面
来源: https://blog.csdn.net/zhangmin29/article/details/100559005