角度项目
我正在尝试在Angular应用程序中使用tinymce
,但是我总是遇到此错误:
“ ... node_modules/@angular/core/core”'没有导出的成员 'ɵɵfractorydeclaration'。
您能告诉我我需要做什么来解决这个问题吗? 先感谢您!
I am trying to use TinyMCE
in my angular application, but I always got this error:
"...node_modules/@angular/core/core"' has no exported member
'ɵɵFactoryDeclaration'.
Could you please tell me what I need to do to fix this problem?
Thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否安装了
@tinymce/tinymce-angular
库?如果这样做,您所要做的就是
从'@tinymce/tinymce-tinymce-angular';
in opp-module或您选择的任何其他模块中导入{editormodule}。您可以阅读有关如何在其官方网站上获取应用程序的API密钥和其他初始化配置。
Did you install the
@tinymce/tinymce-angular
library?If you did, all you have to do is
import { EditorModule } from '@tinymce/tinymce-angular';
into your app-module or any other module of your choosing.You can read up on how to get the API key for your app and other initialization configuration for TinyMCE on their official website.