问答详情
源自:3-3 登录权限

为什么我在使用console.log()的时候会报错

http://img1.mukewang.com/5dbe857f0001ae8405830211.jpg

为什么我在使用console.log()的时候会报错

提问者:BlueWonder丶 2019-11-03 15:45

个回答

  • 楼下
    2019-11-06 18:00:28

    eslint报的错,不是写了吗 unexpected console statement

  • qq_慕田峪6247735
    2020-05-10 19:15:59

    建项目不要安装eslint把...

  • weixin_慕桂英2422495
    2019-12-26 14:57:50

    window.console.log();代替


  • 向朔
    2019-11-15 22:29:58

    应该是你的eslint配置了不能有console吧

    打开:package.json 文件,找到eslintConfig 在rules 规则中增加

    “no-console”:“off”

  • BlueWonder丶
    2019-11-03 20:32:32

    alert()倒是没有报错,是什么问题呢?

  • BlueWonder丶
    2019-11-03 20:31:06

    是因为eslint代码检测吗?不符合es6规范?