本文介绍了Reactjs 控制台错误([HMR] 正在等待来自 WDS 的更新信号...)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我努力解决出现在 chrome 控制台中的这个错误.似乎是 webpack 错误 .. 但在哪里解决它

I struggle to solve this error which is appearing in the chrome console .seems a webpack error .. but where to solve it

[HMR] 正在等待来自 WDS 的更新信号...

推荐答案

  1. 转到node_modules ->webpack ->常用文件夹.

在它下面你会找到一个 log.js 文件,打开它编辑该部分(在 if(level === "info") 下评论日志)

Under that you'll find a log.js file open thatedit the section (comment the log under if(level === "info") )

module.exports = function(level, msg){
> comment start here

    if (shouldLog(level)) {
        if (level === "info") {
            console.log(msg);
        } else if (level === "warning") {
            console.warn(msg);
        } else if (level === "error") {
            console.error(msg);
        }

    }
> comment end here
};

更多信息:react-scripts 3.3.0/3.3.1 ->[HMR] 正在等待来自 WDS 的更新信号...在控制台中(Edge 仍然不工作)#8153

这篇关于Reactjs 控制台错误([HMR] 正在等待来自 WDS 的更新信号...)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 11:58