从子到父的角度传递数据

问题描述 投票:6回答:4

我正在学习/研究Angular项目,我已经做了很多,我尝试以“正确的方式”做事,所以现在我想做的是:

我想从子组件到父组件获取变量(输出),但我不想使用输出,我不想听它,我想在父母需要时得到它,像child.getVariable()我我发现有一个帖子说我应该使用childview,但问题与我的不一样,所以我想知道使用childview从子组件获取数据是否是一个好习惯?

angular typescript output event-listener childviews
4个回答
2
投票

在@mutput中注册子组件中的EventEmitter:

@Output() onDatePicked: EventEmitter<any> = new EventEmitter<any>();
Emit value on click:

public pickDate(date: any): void {
    this.onDatePicked.emit(date);
}

侦听父组件模板中的事件:

<div>
    <calendar (onDatePicked)="doSomething($event)"></calendar>
</div>

并在父组件中:

public doSomething(date: any):void {
    console.log('Picked date: ', date);
}

参考:stackoverflow.com/a/42109866/4697384


1
投票

如果要同步访问子组件,则最好使用ViewChild,如下所示:

import { CountryCodesComponent } from '../../components/country-codes/country-codes.component';
import { Component, ViewChild } from '@angular/core';

@Component({
    selector: 'signup',
    templateUrl: "signup.html"
})
export class SignupPage {
    @ViewChild(CountryCodesComponent)
    countryCodes: CountryCodesComponent;
    nationalPhoneNumber = '';

    constructor() {}

    get phoneNumber(): string {
        return '+' + this.countryCodes.countryCode + this.nationalPhoneNumber;
    }
}

0
投票

您是否只需要从父模板中访问子组件的变量?如果是这样,您可以使用:

<child-component #childComponentRef></child-component>

然后,您可以从父模板中访问#childComponentRef.someVariable。否则我认为Angular团队建议共享服务。无论如何,它们的功能更多一些。见https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#parent-and-children-communicate-via-a-service


0
投票

父母如何与Angular中的Child组件进行通信。

(i)子组件公开一个EventEmitter属性,当事情发生时,它会发出事件。父级绑定到该事件属性并对这些事件做出反应。

(ii)父组件不能使用数据绑定来读取子属性或调用子方法。您可以通过为子元素创建模板引用变量,然后在父模板中引用该变量来执行这两项操作

(iii)局部变量方法简单易行。但它是有限的,因为父子布线必须完全在父模板内完成。父组件本身无权访问子组件。

(iv)家长和孩子可以通过服务进行交流。

有关详细说明,请参阅以下链接:

Angular Official website- Components communication

© www.soinside.com 2019 - 2024. All rights reserved.