我刚开始使用eslint
,并且在运行访问各种网页的应用程序的一部分时,我会获得控制台消息,如在控制台中打印出来的消息
ConsoleMessage {
_type: 'warning',
_text: 'Extra form data if value attribute is present with non-empty value for <input type=\'image\'> is deprecated and will be removed in M68, around July 2018. See https://www.chromestatus.com/features/5672688152477696 for more details.',
_args: [] }
我在.eslintrc.js
"no-console": 0
但是我仍然收到这些消息,如何抑制呢?
谢谢
答案 0 :(得分:1)
该消息与eslint
没有任何关系,它是no-console
规则。该消息是Google Chrome浏览器关于some deprecated code的警告。
正如您指出的那样,您正在从应用程序中“访问各种网站”,我想您可能正在使用类似puppeteer的东西,并且消息可能是this的输出。这可能意味着这是Google Chrome浏览器警告您访问的网站已弃用代码。
要回答有关禁止显示这些消息的问题,您不应记录这些控制台事件,但是我不确定,因为我没有看到您的代码。