Skip to content

Commit 9b892b1

Browse files
ICL1428 最近设施分析坐标数组过长解析存在问题导致请求失败
1 parent 7c21716 commit 9b892b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/util/FetchRequest.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export var FetchRequest = {
369369
if (!this.urlIsLong(url)) {
370370
return this._fetch(url, params, options, type);
371371
} else {
372-
return this._postSimulatie(type, url.substring(0, url.indexOf('?')), Util.getParameters(url), options);
372+
return this._postSimulatie(type, url.substring(0, url.indexOf('?')), params, options);
373373
}
374374
},
375375
/**
@@ -394,7 +394,7 @@ export var FetchRequest = {
394394
return RequestJSONPPromise.DELETE(config);
395395
}
396396
if (this.urlIsLong(url)) {
397-
return this._postSimulatie(type, url.substring(0, url.indexOf('?')), Util.getParameters(url), options);
397+
return this._postSimulatie(type, url.substring(0, url.indexOf('?')), params, options);
398398
}
399399
return this._fetch(url, params, options, type);
400400
},

0 commit comments

Comments
 (0)