mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-05 05:29:29 +08:00
fix: post 请求URL变量失效
This commit is contained in:
parent
960641c577
commit
1e73ad065a
@ -689,7 +689,7 @@ class JMXHttpRequest {
|
||||
});
|
||||
for (let i = 0; i < parameters.length; i++) {
|
||||
let parameter = parameters[i];
|
||||
path += (encodeURIComponent(parameter.name) + '=' + encodeURIComponent(parameter.value));
|
||||
path += (parameter.name + '=' + parameter.value);
|
||||
if (i != parameters.length -1) {
|
||||
path += '&';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user