gpt4 book ai didi

javascript - 脚本 5009 : 'fetch' is undefined

转载 作者:搜寻专家 更新时间:2023-10-31 23:32:24 24 4
gpt4 key购买 nike

有一些麻烦!对于我的请求,我正在使用 Fetch API!

提交表单在 IE 中不起作用,因为“SCRIPT5009:‘fetch’未定义”!

示例:

fetch("url",
{
method: "POST",
body: JSON.stringify(data),
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
}).then(function (response) {
return response.json().then(function (data)

同时在 Chrome 和 FF 中运行良好!我已经在 Google 上尝试寻找一些解决方案,但没有帮助!

我尝试在 npm 中安装“isomorphic-fetch”和“es6-promise”,并尝试将其导入我的 .js 文件中,但也没有成功,控制台显示:“Uncaught SyntaxError: Unexpected token 导入”!顺便说一句,required() 函数也不能正常工作!所以我现在完全不知道该怎么做,如何使用这些 polyfill 之类的东西!

如果有人有想法,请提前致谢!BR!

最佳答案

您可以使用 https://github.com/github/fetch相反。

CDN:https://cdnjs.com/libraries/fetch

<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.js"></script>

如果你需要 Promise polyfill,你可以使用 http://bluebirdjs.com/docs/install.html

<script src="//cdn.jsdelivr.net/bluebird/3.5.0/bluebird.min.js"></script>

fetch之前加载Bluebird:

<script src="//cdn.jsdelivr.net/bluebird/3.5.0/bluebird.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.js"></script>

关于javascript - 脚本 5009 : 'fetch' is undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44242051/

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