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:
*我找不到用于某值返回值类型和状态类型的适当类型。
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));
最佳答案
解决了!
我在systemjs.config.js内部进行了更改,将“ @ngrx”的值从供应商/ @ ngrx映射到了“ node_modules / @ ngrx”。
关于javascript - 归约函数导致错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38573011/