7

什么时候process.env.NODE_ENV=='development'——没关系!

但是我们的生产构建在 IE 11 (11.0.9600) 中失败了。在 chrome 55 中一切正常。

开发依赖:

...
babel-core: "6.22.0",
babel-eslint: "^7.0.0",
babel-loader: "^6.2.5",
babel-preset-env: "^1.5.2",
babel-preset-es2015: "^6.16.0",
babel-preset-es2016: "^6.22.0",
babel-preset-es2017: "^6.16.0",
babel-preset-react: "^6.16.0",
babel-preset-stage-0: "^6.22.0"
...

依赖项:

...
babel-polyfill: "^6.16.0"
...

.babelrc:

{
    "presets": [
        "react",
        ["env", {
             "useBuiltIns": true
        }],
        "stage-0"
    ]
}

尝试"useBuiltIns": falsees2016、es2015、es2017 预设。没有什么变化。

index.js:

"use strict";
import 'babel-polyfill'
...

webpack.config module.exports.entry:

vendor: ['babel-polyfill', 'immutable', 'react', 'react-dom', ...],
...
bundle: [path.resolve(__dirname, srcPath + ""index.js)]

vendor 是 index.html 中的第一个脚本。

在 ie 控制台中键入 _babelPolyfill 返回 true。但是标头,提取是未定义的......

为什么process.env.NODE_ENV=='production'在 IE11 中破坏了我的应用程序?如何修复我的配置?

4

1 回答 1

6

core.js 没有用于 Headers() 和 fetch 的 polyfill,所以 babel-polyfill 没有。使用 fetch polyfills 之一:

  • whatwg-fetch 浏览器的 polyfill 仅支持https://github.com/github/fetch
  • isomorphic-fetch - polyfill,基于 whatwg-fetch,用于节点和浏览器支持

欲了解更多信息:

https://github.com/zloirock/core-js

isomorphic-fetch 和 fetch 有什么区别?

于 2017-06-21T17:08:19.233 回答