webpack/babel/es6 导入问题 - (0 , _whatwgFetch2.default) 不是函数

webpack/babel/es6 import issue - (0 , _whatwgFetch2.default) is not a function

我正在将 whatwg-fetch(https://github.com/github/fetch) 导入我的应用程序

import fetch from 'whatwg-fetch';

对于本地开发,我使用 webpack-dev-server。我收到此错误消息:

 test.js?ba55:67 Uncaught TypeError: (0 , _whatwgFetch.fetch) is not a function

从这一行触发:

fetch('/api/mydata', opts)

为什么导入失败?

whatwg-fetch 实际上是一个 polyfill

我只需要这样导入即可:

import 'whatwg-fetch';