我正在使用在openwrt中安装的coovachilli进行热点项目。 我正在使用coovachilli json进行登录。 这是我进行登录的代码
chilliController.host="192.168.2.1";
chilliController.port="3990"
chilliController.logon('username','password');
我想检查登录是成功还是失败,无法将他重定向到成功页面或失败页面 我用这段代码进行检查
if(chilliController.clientState ==1)
window.location.replace('success.php')
else
window.location.replace('error.php')
问题是
chilliController.clientState返回未定义的值
我不知道如何获取用户的当前状态来做出决定