子组件中的Angular 2 ngModel更新父组件属性

时间:2016-02-10 23:18:23

标签: typescript angular angular2-ngmodel

我创建了一个简单的UI,它包含两个组件(父级和子级)。

当我在Child组件的输入框中输入一些内容时,UI的作用是什么。该值将使用ngModel更改。

子组件以这种方式工作正常。

// Child Component
@Component({
    selector: 'child',
    template: `
        <p>{{sharedVar}}</p>
        <input [(ngModel)]="sharedVar">
    `
})
export class ChildComponent {
    sharedVar: string;
}

现在我有一个父组件,我打算使用与Child Component相同的值。

我将Child Component添加到Parent模板中,并使用依赖注入来调用Child Component的sharedVar

// Parent Component
@Component({
    selector: 'parent',
    template: `
        <h1>{{sharedVar}}</h1>
        <child></child>
    `,
    directives: [ChildComponent],
    providers: [ChildCompnent]
})
export class ParentComponent {
    sharedVar: string;
    constructor(child: ChildComponent) {
        this.sharedVar = child.sharedVar;
    }
}

问题是当我在输入框中输入时,<p>中的值会自动更改,而父组件的<h1>中的值不会更改。

3 个答案:

答案 0 :(得分:96)

我们可以使用父模板中的[(x)]语法来实现与子进程的双向数据绑定。如果我们创建名为xChange的Output属性,Angular将自动更新父属性。每当孩子改变值时,我们确实需要emit()一个事件:

import {Component, EventEmitter, Input, Output} from 'angular2/core'

@Component({
    selector: 'child',
    template: `
        <p>Child sharedVar: {{sharedVar}}</p>
        <input [ngModel]="sharedVar" (ngModelChange)="change($event)">
    `
})
export class ChildComponent {
    @Input() sharedVar: string;
    @Output() sharedVarChange = new EventEmitter();
    change(newValue) {
      console.log('newvalue', newValue)
      this.sharedVar = newValue;
      this.sharedVarChange.emit(newValue);
    }
}

@Component({
    selector: 'parent',
    template: `
        <div>Parent sharedVarParent: {{sharedVarParent}}</div>
        <child [(sharedVar)]="sharedVarParent"></child>
    `,
    directives: [ChildComponent]
})
export class ParentComponent {
    sharedVarParent ='hello';
    constructor() { console.clear(); }
}

Plunker

我在ParentComponent中使用sharedVarParent只是为了证明父母和孩子的名字不一定相同。

答案 1 :(得分:3)

您可以设置从子级到父级的事件发射器通信(outputs)。例如:

@Component({
    selector: 'child',
    template: `
        <p>Child: {{sharedVar}}</p>
        <input [(ngModel)]="sharedVar" (ngModelChange)="change()">
    `
})
export class ChildComponent {
    @Output() onChange = new EventEmitter();
    sharedVar: string;
    change() {
        this.onChange.emit({value: this.sharedVar});
    }
}

和父母组件:

@Component({
    selector: 'parent',
    template: `
        <h1>{{sharedVar}}</h1>
        <child (onChange)="sharedVar = $event.value"></child>
    `,
    directives: [ChildComponent]
})
export class ParentComponent {
    sharedVar: string;
    constructor() {

    }
}

演示: http://plnkr.co/edit/T2KH4nGKPSy6GEvbF1Nb?p=info

答案 2 :(得分:2)

如果你想在同一个组件中有多个双向数据绑定,你可以这样做

export class ComponentName {
    @Input() public first: string = '';
    @Input() public second: string = '';
    @Output() public firstChange = new EventEmitter();
    @Output() public secondChange = new EventEmitter();

    public functionName1(first: string): void {
        this.first = first;
        this.firstChange.emit(first);
    }

    public functionName2(second: string): void {
        this.second = second;
        this.secondChange.emit(second);
    }
}

当输入和输出被命名为“x”和“xChange”时,它会自动在父项中自动检测它们。

我认为这实际上比接受的答案中的做法更好,因为在这里它立即清楚地说明了名称的相关性。