我想發送頁面編號和pagesize到webapi, 但沒有參數傳遞,我debugedd應用程序在VS代碼,pagingModel有pageSize和PageNumber成員,他們都有值,但是當我打開chrome dev工具時,請求中沒有參數url 我的代碼有什麼問題嗎?不能發送參數與角http.get
getTasks(pagingModel: IPagingModel): Promise<TaskList> {
const url = this.taskUrl;
const params = new URLSearchParams();
let option: RequestOptions;
// tslint:disable-next-line:forin
for (const key in pagingModel) {
params.set(key, pagingModel[key]);
}
option = new RequestOptions({search: params, params: params});
return this.http.get(url, option)
.toPromise()
.then(response => response.json() as TaskList)
.catch(this.handleError);
}
'搜索:params,params:params' - 調用參數名稱及其變量'params'是一條冒險的道路。 –
只是試圖通過它所有可用的選項中得到, – Arash