1
このURLにパラメータを挿入しようとしていますが、動作させることができません。ここに私のコードは次のとおりです。変数をパラメータとして使用することはできません
filterFunction(newValue, parameter){
this.workorderservice.searchWorkorders(1, 20, {sort: {}, search: {predicateObject: {'workorder.location.street': newValue}}, pagination: {start: 0}})
.subscribe(data =>{ this.rows = data.json()
this.links = this.parselink.parse(data.headers.get('link'))
console.log(this.rows)
})
}
私はあなたがそのようなパラメータ名を使用することはできませんパラメータで
ありがとう、これは私の問題を助けました。 – user2843943