我创建了一个名为services
的模块,它为其他项目提供加载栏,通知和flash标语等。我通过babel捆绑了这个模块,它运行得很完美,但随着服务需求不断增长,所以我必须从webpack-2捆绑这个因为css类型问题。我将它捆绑为一个库。但是当我使用从服务导入的通知时,它会发出警告
Uncaught Error: addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component's `render` method, or you have multiple copies of React loaded
和
index.js:25 Uncaught TypeError: Cannot read property 'componentWillEnter' of undefined
PS:我已经尝试过webpack的resolve.alias和externals属性但没有用:(有什么建议吗?