为了账号安全,请及时绑定邮箱和手机立即绑定

jshint的时候,grunt报错,说为一个变量为只读的,请大家指教。

jshint的时候,grunt报错,说为一个变量为只读的,请大家指教。

素胚勾勒不出你 2018-08-04 11:25:42
var getUserInfoFromC = function() {        var current_user = [];        current_user.id = 0;        current_user.name = '';        var cookie_user = document.cookie.match(".*_user=(.*)");        if (cookie_user != null) {            cookie_user_matched = cookie_user[1].split('%2C');            current_user.id = cookie_user_matched[0];            current_user.name = decodeURI(cookie_user_matched[1]);        }        return current_user;    };    因为这里的cookie_user_matched变量为全变量,而且没有声明
查看完整描述

1 回答

?
慕的地6264312

TA贡献1817条经验 获得超6个赞

就是因为这是一个全局变量。
文件一开始写个

/*global cookie_user_matched:true */


查看完整回答
反对 回复 2018-09-23
  • 1 回答
  • 0 关注
  • 521 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信