<tr *ngFor="let logDetails of logDetails | search : term" >
我有一个要在其中使用变量的管道。在我的组件中定义了相同的变量。如何将此值从组件传递到管道?
//Pipe Structure
transform(value, [term], newVal) {
if (value == undefined && newVal == undefined) {
return undefined;
} else {
return value.filter((item) => item.LogString.startsWith(term));
}
}
//Component Structure
newVal(a) {
this.newChildData = a;
console.log(this.newChildData);
}
我想将newChildData
组件传递到newVal
管道中。
// HTML 模板