如何将请求的参数作为查询参数发送。
我尝试过
textarea
但是由于此错误,参数2-3被接受了。
如何调用此类请求
我使用的json如下所示,但用于将数据作为查询传递?
addLocal(data: any) {
const queryParams = `?email=${data.email}&name=${data.name}&phone_number=${data.phone_number}`;
return this.httpclient.post('https://www.example.com/coming/receive' + queryParams);
}
答案 0 :(得分:0)
尝试像这样使用
return this.httpclient.post('https://www.example.com/coming/receive' + queryParams,{});
编辑:
Http POST
将资源URL作为参数和另外两个参数