Skip to content

Commit 6038ab4

Browse files
author
caoxinke
committed
fix 笔误
1 parent a002871 commit 6038ab4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dist/iclient9-leaflet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3056,7 +3056,7 @@ SuperMap.FetchRequest = {
30563056
case 'GET':
30573057
return this.get(url, params, options);
30583058
case 'POST':
3059-
return this.POST(url, params, options);
3059+
return this.post(url, params, options);
30603060
case 'PUT':
30613061
return this.put(url, params, options);
30623062
case 'DELETE':

dist/iclient9-leaflet.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/iclient9-openlayers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2988,7 +2988,7 @@ SuperMap.FetchRequest = {
29882988
case 'GET':
29892989
return this.get(url, params, options);
29902990
case 'POST':
2991-
return this.POST(url, params, options);
2991+
return this.post(url, params, options);
29922992
case 'PUT':
29932993
return this.put(url, params, options);
29942994
case 'DELETE':

dist/iclient9-openlayers.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/common/util/FetchRequest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SuperMap.FetchRequest = {
1414
case 'GET':
1515
return this.get(url, params, options);
1616
case 'POST':
17-
return this.POST(url, params, options);
17+
return this.post(url, params, options);
1818
case 'PUT':
1919
return this.put(url, params, options);
2020
case 'DELETE':

0 commit comments

Comments
 (0)