反应奇怪的Firefox错误

时间:2017-12-09 17:34:01

标签: reactjs firefox

我有一个反应应用程序,我在Firefox中获得此TypeError,最新版本,在chrome和safari上运行正常。

message: "t.linkNamed(...).fetch(...).then(...).finally is not a function"
stack: "[1017]/h</t.prototype._fetch....."

我尝试调试它但没有取得多大成功。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

请注意,在您的Firefox支持Chrome之前,Chrome支持fetch。所以看来你没有使用本机提取。尽管如此,只有Chrome支持响应流:

所以你有两个选择:

  • 添加polyfill进行提取。

  • 或迁移到另一个http客户端。

enter image description here

参考:https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API