作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
从 Angular 11 迁移到 Angular 12 并弹出此问题:
“错误:双向绑定(bind)“值”的属性和事件部分未绑定(bind)到同一目标。”
父页面组件:
import { Component } from '@angular/core';
@Component({
selector: 'app-parent',
template: `
<app-child [(value)]="counterValue"></app-child>
`,
styles: []
})
export class ParentComponent {
counterValue = 0;
}
子组件:
import { Component, OnInit, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'app-child',
template: `
{{ value }}
`,
styles: []
})
export class ChildComponent {
@Input() value = 0;
@Output() incrementValue = new EventEmitter<number>();
increase(): void {
this.value++;
this.incrementValue.emit(this.value);
}
}
这是一个stackblitz供您自行测试的代码:
这是一个错误吗?还是我遗漏了什么?
最佳答案
我只是使用变通方法继续开发,同时解决此问题。
import { Component } from '@angular/core';
@Component({
selector: 'app-parent',
template: `
<app-child [value]="counterValue" (incrementValue)="onChange($event)"></app-child>
`,
styles: []
})
export class ParentComponent {
counterValue = 0;
onChange(n:number) {
this.counterValue = n;
}
}
关于Angular 12 - 双向绑定(bind)给出错误 : The property and event halves of the two-way binding 'prop_name' are not bound to the same target,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71483441/
我是一名优秀的程序员,十分优秀!