鍍金池/ 問(wèn)答/HTML5  HTML/ angular pipe管道該如何綁定數(shù)據(jù)來(lái)進(jìn)行篩選?

angular pipe管道該如何綁定數(shù)據(jù)來(lái)進(jìn)行篩選?

我想通過(guò)pipe來(lái)控制*ngFor循環(huán)出在頁(yè)面上的數(shù)據(jù) 但是我通過(guò)按鈕控制傳給pipe值 pipe沒(méi)有反應(yīng) 而通過(guò)input [(ngModel)]控制是可以的 各位大佬們我想通過(guò)按鈕控制該怎么辦啊

這是我的代碼
html

<div>
  <!--pipe-->
  <div *ngFor="let one of arr | numberPipe:minprize:maxprize | biaoqianPipe:labelArr">
    <span>{{one.id}}</span>
    <span>{{one.prize}}</span>
    <span>{{one.biaoqian}}</span>
    <span>{{one.shoufa}}</span>
  </div>
</div>
<span>最小值</span>
<input type="text" [(ngModel)]="minprize">
<span>最大值</span>
<input type="text" [(ngModel)]="maxprize">
<p>標(biāo)簽選擇</p>
<!--改變labelArr的按鈕-->
<span *ngFor="let labels of label" class="biaoqian" [class.xuanbiaoqian]="labels.selted"     (click)="chooseLabels(labels)">{{labels.text}}</span>

ts

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-pipe',
  templateUrl: './pipe.component.html',
  styleUrls: ['./pipe.component.css']
})
export class PipeComponent implements OnInit {
  minprize = 20
  maxprize = 50

  label = [
    {text:"水果",selted:false},
    {text:"衣服",selted:false},
    {text:"玩具",selted:false},
  ]
  labelArr = []
  arr = [
    {id:1,prize:20,biaoqian:"水果",shoufa:true},
    {id:2,prize:30,biaoqian:"水果",shoufa:false},
    {id:3,prize:40,biaoqian:"衣服",shoufa:true},
    {id:4,prize:50,biaoqian:"衣服",shoufa:false},
    {id:5,prize:60,biaoqian:"玩具",shoufa:true},
    {id:6,prize:70,biaoqian:"玩具",shoufa:false}
  ]

  constructor() { }

  ngOnInit() {
  }
  // 選標(biāo)簽
  chooseLabels(data){    //改變labelArr數(shù)組事件
    if (data.selted === false) {
      this.labelArr.push(data.text)
    } else {
      for (let i = 0; i < this.labelArr.length; i++) {
        if (this.labelArr[i] === data.text) {
          this.labelArr.splice(i, 1);
        }
      }
    }
    data.selted=!data.selted;
    console.log(this.labelArr)
  }
}

pipe.ts

// 導(dǎo)入模塊
import {Pipe, PipeTransform} from "@angular/core";
// 管道名稱(chēng)
@Pipe({name: "biaoqianPipe"})
export class NiaoqianPipe implements PipeTransform {
  transform(value:any, labelArr:any) {  //我通過(guò)改變labelArr數(shù)組 無(wú)法執(zhí)行到這里 只有第一次進(jìn)入頁(yè)面會(huì)執(zhí)行到
    console.log(value)
    console.log(labelArr)
    if (labelArr.length === 0) {
      return value
    } else {
      console.log("發(fā)生改變")        
    }
  }
}


回答
編輯回答
扯不斷

@Pipe({name: "biaoqianPipe",pure: false})使用非純管道

Angular有兩類(lèi)管道:純的與非純的。 默認(rèn)情況下,管道都是純的
純管道:
Angular只有在它檢測(cè)到輸入值發(fā)生了純變更時(shí)才會(huì)執(zhí)行純管道。 純變更是指對(duì)原始類(lèi)型值(String、Number、Boolean、Symbol)的更改, 或者對(duì)對(duì)象引用(Date、Array、Function、Object)的更改。
Angular會(huì)忽略(復(fù)合)對(duì)象內(nèi)部的更改。 如果我們更改了輸入日期(Date)中的月份、往一個(gè)輸入數(shù)組(Array)中添加新值或者更新了一個(gè)輸入對(duì)象(Object)的屬性,Angular都不會(huì)調(diào)用純管道。

更多詳情查看Angular-管道-純管道與非純管道

2017年3月1日 15:52