Dynamically updating [checked] in Angular2

2019-02-23 19:12发布

componentA.ts:

@Input() array;

<input type="checkbox" [checked]="array | contains: value"/>
<label>{{array.length}}</label>

componentB.ts:

@Component({
  selector: 'app-component-b',
  templateUrl: './app.component-b.html'
})
export class AppComponentB {
  array = [1, 2, 3];
}

I update array in some other components. While the label updates the array's length correctly, the check box doesn't seem to be updated. contains is just a simple pipe that checks if value is part of array. I put a console.log in the contains pipe and only got the output when the page renders at first, not when array is changed. Why is this?

Thanks..

1条回答
三岁会撩人
2楼-- · 2019-02-23 19:58

That's because if you use push to add new item to array then the array reference isn't changed while pure pipe will be executed only when it detects a pure change to the input value (array and value in your case)

There is two solutions:

1) return new array

this.array = this.array.concat(4)

or

this.array = [...this.array, 4];

Plunker

2) use impure pipe

@Pipe({name: 'contains', pure: false})
export class ContainsPipe implements PipeTransform {

Plunker

For more details see also

查看更多
登录 后发表回答