Skip to content

Commit 9d0932b

Browse files
author
caoxinke
committed
fix Request.js模拟POST请求多加了一次Token参数的问题。
1 parent 6cd0021 commit 9d0932b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/common/util/Request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ SuperMap.Request = {
4343

4444
_postSimulatie: function (type, url, params, options) {
4545
var separator = url.indexOf("?") > -1 ? "&" : "?";
46-
url += separator + '_method= ' + type + this._appendUrlTokenParameter(url);
46+
url += separator + '_method= ' + type;
4747
return this.post(url, params, options);
4848
},
4949

0 commit comments

Comments
 (0)