ソースを参照

Fix undefined variable error.

zxerqw 3 年 前
コミット
f5b60ed69a
1 ファイル変更1 行追加1 行削除
  1. 1 1
      resouces/JsEnv.js

+ 1 - 1
resouces/JsEnv.js

@@ -57,7 +57,7 @@ Hlclient.prototype.handlerRequest = function (requestJson) {
         this.sendResult('','need request param {action}');
         return
 }
-    action=result["action"]
+    var action=result["action"]
     var theHandler = this.handlers[action];
     if (!theHandler){
 	    this.sendResult(action,'action not found');