1
我正嘗試在新的Angular 2項目上使用immutable.js中的List
模塊。當我這樣做時,瀏覽器會嘗試GET http://localhost:3000/immutable,並因404 Not Found錯誤而失敗。無法將列表模塊從immutable.js導入到Angular 2項目
這裏是我做過什麼:
- 我從GitHub(https://github.com/angular/quickstart)
- 我跑
npm install
和npm install -D immutable
我再修改app.module克隆角2快速入門 回購。 ts如下:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { List } from 'immutable';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {
constructor() {
let list = List.of(1,2,3);
}
}
當我在npm start
這個項目中,我得到了404錯誤。
我錯過了一些明顯的東西嗎?