React应用程序在Google chrome中可以正常运行,但在Internet Explorer中不能正常运行 您可以在[Python]: PEP 370 -- Per user site-packages directory - Implementation
上进行检查我尝试了polyfils(它不起作用) 还是同样的问题
答案 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";