mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2026-02-04 16:45:52 +08:00
Merge pull request #62 from fjogeleit/url-encoded
Use URLSearchParams for application/x-www-form-urlencoded
This commit is contained in:
12
dist/index.js
vendored
12
dist/index.js
vendored
@@ -2672,10 +2672,15 @@ module.exports.default = axios;
|
||||
const axios = __webpack_require__(53);
|
||||
const FormData = __webpack_require__(928)
|
||||
const fs = __webpack_require__(747)
|
||||
const url = __webpack_require__(835);
|
||||
|
||||
const METHOD_GET = 'GET'
|
||||
const METHOD_POST = 'POST'
|
||||
|
||||
const HEADER_CONTENT_TYPE = 'Content-Type'
|
||||
|
||||
const CONTENT_TYPE_URLENCODED = 'application/x-www-form-urlencoded'
|
||||
|
||||
/**
|
||||
* @param {Object} param0
|
||||
* @param {string} param0.method HTTP Method
|
||||
@@ -2723,6 +2728,13 @@ const request = async({ method, instanceConfig, data, files, file, actions, igno
|
||||
updateConfigForFile(instanceConfig, file, actions)
|
||||
}
|
||||
|
||||
if (instanceConfig.headers[HEADER_CONTENT_TYPE] === CONTENT_TYPE_URLENCODED) {
|
||||
let dataJson = convertToJSON(data)
|
||||
if (typeof dataJson === 'object') {
|
||||
data = (new url.URLSearchParams(dataJson)).toString();
|
||||
}
|
||||
}
|
||||
|
||||
const requestData = {
|
||||
method,
|
||||
data,
|
||||
|
||||
Reference in New Issue
Block a user