React App在Internet Explorer(Empty div)中不起作用

时间:2019-07-16 16:49:45

标签: reactjs internet-explorer

React应用程序在Google chrome中可以正常运行,但在Internet Explorer中不能正常运行 您可以在[Python]: PEP 370 -- Per user site-packages directory - Implementation

上进行检查

我尝试了polyfils(它不起作用) 还是同样的问题

1 个答案:

答案 0 :(得分:0)

您在IE中遇到此错误:

'fetch' is undefined

您有两个选择:

通过外部脚本链接在您的ReactJS中

1个polyfill“获取”

<script crossorigin="anonymous" src="https://polyfill.io/v3/polyfill.min.js?features=fetch"></script>

2从npm软件包中添加抓取,例如“ isomorphic-unfetch”。

import fetch from "isomorphic-unfetch";