我正在尝试在Angular 2中使用markdownEditor。我已经下载了项目并运行它,一切正常。但是,当我在我自己的项目中复制组件时,我在conversion/markdownConverter.ts
中收到以下错误:
找不到模块'node_modules / marked / marked.min.js'
//markdownConverter.ts
import * as marked from 'node_modules/marked/marked.min.js'; //<--not found
import { Injectable } from 'angular2/core';
@Injectable()
export class MarkdownConverter {
private md:MarkedStatic;
constructor() {
this.md = marked;
}
convert(markdown: string): string {
//return markdown;
//return marked.parse("# h");
return this.md.parse(markdown);
}
}
当我手动搜索模块时,似乎安装了marked
模块...我已尝试this解决方案,但我无法使其正常工作。