如何在IE11中使用React反冲



有办法在IE11中使用react-recoil吗?

我知道IE现在已经死了,但不知何故,我需要支持像IE11这样的旧浏览器

我刚刚用create-next-app创建了一个普通的应用程序。

# in package.json
...
"dependencies": {
...
"recoil": "^0.7.5",
...
}

当我尝试使用react-recoil时,它不断抛出像一样的无尽错误

This element does not support 'attachShadow'

The above error occurred in the <Portal> component:
at Portal ...
at ReactDevOverlay ...
at construct ...
at AppContainer ...
at Root ...
React will try to recreate this component tree from scratch using the error boundary you provided, Container.

有人知道如何在IE11中使用react-recoil吗?

谢谢:(

根据官方文档,您需要使用Babel编译代码,并使用预设的@babel/preset-env。但是,由于需要ES6,因此不建议使用。

相关内容

  • 没有找到相关文章

最新更新