gpt4 book ai didi

javascript - 无法将 List 模块从 immutable.js 导入 Angular 2 项目

转载 作者:搜寻专家 更新时间:2023-10-30 21:52:17 24 4
gpt4 key购买 nike

我正在尝试在新的 Angular 2 项目中使用 immutable.js 中的 List 模块。当我这样做时,浏览器会尝试获取 http://localhost:3000/immutable并因 404 Not Found 错误而失败。

这是我做的:

然后我修改了 app.module.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 错误。

我是否漏掉了一些明显的东西?

最佳答案

经过更多的谷歌搜索,我发现答案很简单。我只需要在 systemjs.config.js 中向 map 添加一个新元素:

// other libraries
[...]
'immutable': 'node_modules/immutable/dist/immutable.js'

关于javascript - 无法将 List 模块从 immutable.js 导入 Angular 2 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41342554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com