Axios Http客户端-如何使用表单参数构造Http Post URL

我正在尝试使用一些要设置的表单参数创建一个postHTTP请求。我正在将axios与节点服务器一起使用。我已经有一个构造URL的Java代码实现,如下所示:

JAVA代码:

HttpPost post = new HttpPost(UriBuilder.fromUri (getProperty("authServerUrl"))

.path(TOKEN_ACCESS_PATH).build(getProperty("realm")));

List<NameValuePair> formParams = new ArrayList<NameValuePair>();

formParams.add(new NameValuePair("username",getProperty ("username")));

formParams.add(new NameValuePair("password",getProperty ("password")));

formParams.add(new NameValuePair("client_id, "user-client"));

我正在尝试在axios中做同样的事情。

AXIOS的实现:

axios.post(authServerUrl +token_access_path,

{

username: 'abcd', //gave the values directly for testing

password: '1235!',

client_id: 'user-client'

}).then(function(response) {

console.log(response); //no output rendered

}

在邮寄请求上设置这些表格参数的方法是否正确?

回答:

您必须执行以下操作:

var querystring = require('querystring');

//...

axios.post(authServerUrl + token_access_path,

querystring.stringify({

username: 'abcd', //gave the values directly for testing

password: '1235!',

client_id: 'user-client'

}), {

headers: {

"Content-Type": "application/x-www-form-urlencoded"

}

}).then(function(response) {

console.log(response);

});

以上是 Axios Http客户端-如何使用表单参数构造Http Post URL 的全部内容, 来源链接: utcz.com/qa/410391.html

回到顶部