Angular 8 httpClient发布

时间:2019-11-29 19:07:07

标签: post httpclient angular8

如果我有以下代码:

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));

0 个答案:

没有答案