gpt4 book ai didi

reactjs -
标签在 IE11 React 应用程序中无法识别

转载 作者:行者123 更新时间:2023-12-05 08:11:30 24 4
gpt4 key购买 nike

我有一个 React 应用程序,在 IE11 的开发控制台中输出以下错误:

Warning: The tag <main> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.

我相信这是因为 <main>元素是 not supported by Internet Explorer .

乍一看,我没有发现应用程序有任何问题。它似乎正确呈现,所以这更让我安心,但是有什么方法可以强制 IE 识别标签(可能使用 html5 垫片或其他方法)以便此控制台错误消失?

最佳答案

尝试 Hook console.error 并通过在加载 react-anime 之前将其放在某处来过滤此消息:

const realError = console.error;
console.error = (...x) => {
// debugger;
if (x[0] === 'Warning: The tag <g> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.') {
return;
}
realError(...x);
};

更多详情请查看this thread .

关于reactjs - <main> 标签在 IE11 React 应用程序中无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55010078/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com