我正在尝试为输入创建一个包装器组件,例如复选框,但我无法更改父(inputValue)变量,即使它被设置为ngModel。
这是我的组件定义:
@Component({
selector: 'my-checkbox',
inputs: ['inputValue', 'label'],
template: `
<div class="ui checkbox">
<input type="checkbox" name="example" [(ngModel)]="inputValue" (change)="onChange($event)">
<label>{{label}}</label>
</div>`
})
export class CheckboxComponent {
inputValue: boolean;
onChange(event) {
this.inputValue = event.currentTarget.checked;
console.log(this.inputValue);
}}
我在父视图中使用它:
<my-checkbox [inputValue]="valueToUpdate" [label]="'Test Label'"></my-checkbox>
控制台确实正确记录,我可以看到内部(inputValue)正在更新但不是外部'valueToUpdate'(ngModel双向绑定未正确更新)。
答案 0 :(得分:6)
您需要为组件定义输出,并使用EventEmitter
类来触发相应的事件。
@Component({
selector: 'my-checkbox',
inputs: ['inputValue', 'label'],
outputs: ['inputValueChange']
template: `
<div class="ui checkbox">
<input type="checkbox" name="example" [(ngModel)]="inputValue" (change)="onChange($event)">
<label>{{label}}</label>
</div>`
})
export class CheckboxComponent {
inputValue: boolean;
inputValueChange: EventEmitter<any> = new EventEmitter();
onChange(event) {
this.inputValue = event.currentTarget.checked;
console.log(this.inputValue);
this.inputValueChange.emit(this.inputValue);
}
}
这样您就可以为子组件使用两个绑定:
<my-checkbox [(inputValue)]="valueToUpdate" [label]="'Test Label'">
</my-checkbox>
答案 1 :(得分:4)
关注@Thierry的回答(即使用输出属性),但我建议使用内置的ngModelChange
事件,而不是使用两个事件绑定。即,[(ngModel)]
和(change)
导致两个事件绑定,因此每次点击都会运行两个事件处理程序。内置的ngModelChange
事件也更好/更清晰,因为$event
已经映射到复选框的值,而不是DOM点击事件。所以,以下是@ Thierry答案的建议更改:
<input type="checkbox" name="example"
[ngModel]="inputValue" (ngModelChange)="onChange($event)">
onChange(newValue) {
this.inputValue = newValue;
console.log(newValue);
this.inputValueChange.emit(newValue);
}