设置Angular + Ionic项目,我们试图将Redux纳入故事中。我们有一个工作角度离子设置。尝试使用以下步骤添加Redux时:
npm install --save ng-redux
并包含在app index.js文件中
import ngRedux from 'ng-redux';
最终注入角度app:
const app = angular
.module('app', [
ngRedux,
'ionic',
components,
])
导致应用程序崩溃的最后一步:“无法实例化模块{},原因如下: 错误:[ng:areq]参数'module'不是函数,得到了对象“
感谢任何帮助。
答案 0 :(得分:0)
解决方案:在角度依赖项中添加ngRedux作为字符串 (如果你使用的是eslint:在ngRedux import语句中禁用lint)
const app = angular
.module('app', [
'ngRedux',
'ionic',
components,
])