reduce函数导致错误

时间:2016-07-25 16:28:12

标签: javascript angular store rxjs ngrx

Chrome控制台中显示的错误:

1. http://localhost:3000/vendor/@ngrx/store/index.js
Failed to load resource: the server responded with a status of 404 (Not Found)

2. localhost/:19 Error: Error: XHR error (404 Not Found)
loading http://localhost:3000/vendor/@ngrx/store/index.js(…)
(anonymous function) @ localhost/:19

reducer.ts: *我找不到适用于某些东西的类型1返回值的类型和状态类型。

import { Action} from '@ngrx/store';
export const something1 = (state: any = {}, action:Action) => {
  switch (action.type) {
    default:
      return state;
  }
};

main.ts:删除" provideStore({something1})"将导致应用程序工作

import { bootstrap }    from '@angular/platform-browser-dynamic';
import { AppComponent } from './app.component';
import { disableDeprecatedForms, provideForms } from '@angular/forms';
import {AccountService} from "./account.service";
import {provideStore} from '@ngrx/store';
import {something1} from "./reducer";

bootstrap(AppComponent, [
  AccountService,
  disableDeprecatedForms(),
  provideForms(),
  provideStore({something1})
])
  .catch((err: any) => console.error(err));

1 个答案:

答案 0 :(得分:0)

解决!

我在systemjs.config.js中将'@ngrx'的值从vendor / @ ngrx更改为'node_modules / @ ngrx'。