如果我有以下代码:
this.parametros =新的HttpParams()。set('id','P0004')。 set('name','nuevo')。set('desc','desc')。set('price','600'); this.http.post(this.localUrl,{params:this.parametros})。subscribe(data => this.displaydata(data));
因为请求中的参数不起作用,但仍可以使用以下代码,如果它们起作用的话:
this.http.post(this.localUrl, {
id: 'P0004',
name: 'nuevo',
desc: 'desc',
price: '600',
}).subscribe(data => this.displaydata(data));