ckeditor

Error with 'import' statement without .js extension using npm module with Laravel Mix

夙愿已清 提交于 2020-12-12 12:14:26
问题 I'm using CKEditor 5 in a Laravel project, getting it from a CDN, so initially I have not needed to run npm. But now I need an alignment plugin, so I used Laravel Mix to run npm install, and then copy the plugin to public folder. Like this: mix.copyDirectory('node_modules/@ckeditor', 'public/@ckeditor'); In my code, I tried to import it: import Alignment from '/@ckeditor/ckeditor5-alignment/src/alignment.js'; So it threw this error in console Uncaught TypeError: Failed to resolve module

CKEditor 5 + SpringBoot实战(五):SpringBoot & Freemarker整合

对着背影说爱祢 提交于 2020-11-24 03:31:05
在本系列的文章中,我将介绍如何在Spring Boot Application中使用CKEditor编辑器。介绍的内容包括基本环境的搭建,文件上传,SpringData JPA数据持久化,CKEditor5的安装,CKEditor图片上传,CKEditor插入视频,获取/设置CKEditor内容等。 项目源码 本系列文章的项目源码同步更新至 码云 和 Github ,你可以任选其一下载源码到本地。项目地址如下: 码云: https://gitee.com/ramostear/CKEditor5-SpringBoot Github: https://github.com/ramostear/CKEditor5-SpringBoot 你也可以通过Git命令行工具下载项目源码,命令如下(二者任选其一): git clone https://gitee.com/ramostear/CKEditor5-SpringBoot.git git clone https://github.com/ramostear/CKEditor5-SpringBoot.git FreeMarker Apache FreeMarker是一个基于Java语言开发的模板引擎,用于根据模板和不断变化的数据生成文本输出(例如:HTML网页,电子邮件,配置文件,源代码等)。FreeMarker模板使用FTL模板语言编写

解决CKEditor4+CKFinder3 connector.php报错500内部服务器问题

北城余情 提交于 2020-10-17 14:11:45
有个后台网站正在用CKEditor和CKFinder为撰写新闻及上传图像和视频,然后在本地的环境下,后台网站CKFinder上传器是没问题的,但是把项目的文件夹移到另一台服务器端上。然后测试的时候,结果点击上传时候就报错500,而且又没有详细的报错日志,更别说chrome的报错日志,因只说500内部服务器错误。这个问题我真的没遇到过emmm,只好自己去摸索这个问题! 测试行为:在后台网站中,选择图像或者视频,然后点击“浏览服务器”或者点击“上传”,上传后就报错500错误消息。 这个URL路径是plugins / ckfinder / core / connector / php / connector.php,它表明是存在服务器上。 于是找网上一大堆关于解决这个的问题。如何去查详细的报错日志呢?当不知道详细的报错日志的情况下,再去找网上,这是在浪费时间,因为这个报错500里面有各种的错误原因。如何去查详细报错日志,步骤操作如下(注:这是在win server 2012 r2的环境中): 首先打开IIS(管理器),选择自己网站的主页并选择错误页: 打开错误页后选择针对500网页,然后选择编辑功能设置: 打开编辑错误页设置后,选择第二个的按钮为详细错误,最后确定,OK。 把网页刷新之后,然后在后台网站就报错500的消息中,就可以看到详细错误的日志,如下: p图