|
|
@@ -59,9 +59,8 @@ async function checkHandleRequest() {
|
|
|
if ($request && $request.method != 'OPTIONS') {
|
|
|
lk.log("path000=" + path);
|
|
|
if (path.indexOf("?") > -1) {
|
|
|
- lk.log(path.split("?"));
|
|
|
- lk.log("########000########");
|
|
|
- path = path.split("?")[0];
|
|
|
+ let arr = path.split("?");
|
|
|
+ path = arr[0];
|
|
|
lk.log("#######111#########");
|
|
|
}
|
|
|
lk.log("path111=" + path);
|