我在Angular项目中使用ckeditor。每次打开应用程序时,我都会通过将其添加到index.html文件中的脚本标签中来动态加载它。但是,由于某些原因,要花费很多时间来加载。我可以将脚本保存在项目文件夹中,以便可以直接从那里访问吗?
这是我在index.html文件中正确访问它的方式。
composer global require fxp/composer-asset-plugin --no-plugins
我能够正确使用ckeditor,并且所有功能都可以正常工作。但是,由于加载时间太长,我想知道是否可以在我的项目文件夹之一中下载它并从那里使用它?
答案 0 :(得分:0)
CKEditor 4通过CKEditor 4 Angular组件提供了本机Angular集成。在您的Angular项目中,安装ckeditor4-angular
npm软件包。
npm install --save ckeditor4-angular
然后将CKEditorModule
导入您的应用程序。
import { CKEditorModule } from 'ckeditor4-angular';
@NgModule( {
imports: [
...
CKEditorModule,
...
],
…
} )
您可以查看此文档以供参考:https://ckeditor.com/docs/ckeditor4/latest/guide/dev_angular.html