我在Ionic2 rc0中使用redux-observable并且低于错误,任何想法?
Error: Module /Volumes/data/test/node_modules/redux-observable/lib/index.js does not
export createEpicMiddleware (imported by /Volumes/data/test/.tmp/store/index.js)
答案 0 :(得分:0)
我多年没有使用过Ionic,但快速浏览Ionic问题跟踪器表明这与Rollup有关并影响了众多第三方库。
ionic#8322包含许多此问题的示例,看起来随后移至ionic-app-scripts#68并使用最新的conclusions appearing to be here
如果您发现有关于redux-observable的内容,我们可以做到更容易,请告诉我们!我们在包中附带maintain a TypeScript definition。
作为临时解决方法,您可能可以直接访问该文件:
import { createEpicMiddleware } from 'redux-observable/lib/createEpicMiddleware';
// note the path! reaching into lib directly
它可能不起作用,因为我怀疑TypeScript会将此文件与index.d.ts中的类型定义相关联。