升级 FCKeditor 到 CKeditor
Upgrading FCKeditor to CKeditor
我使用的 FCKeditor
已经弃用多年了。
我需要升级到 CKeditor
(至少升级到 4.4+,但是 CKeditor
文档没有指定每个版本的最低要求。需要什么 PHP
版本等等?
遗憾的是 CKeditor
没有论坛可以提出一般性问题,他们将所有问题都提交给 Whosebug。
有人知道最低要求吗?
https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_savedata 说:
CKEditor helps you create content but it is the role of your website or application to deal with the data created in this way. Saving data is a server-side operation and you are free to implement the save functionality on your own, in any way you like. CKEditor is a pure JavaScript component and it does not offer anything more than JavaScript methods and events to access the data so that you could save it on the server.
据我的描述和编辑的个人经验来看,它是一个完全客户端的工具。它没有任何服务器端组件。它根本不依赖或要求 PHP 以任何方式。您可以将它与任何服务器端语言或框架集成来决定,只需向/从服务器发出 HTTP 请求。
编辑器是一个客户端工具,我使用编辑器已经很多年了,任何 PHP 版本...但根本不需要 PHP。您也可以使用其他服务器端语言管理 CKEditor 数据。
但 CKEditor 4 和 CKEditor 5 之间存在差异:版本 5 需要 node.js ,请参阅 documentation here
查看 documentation
还有说明。 ..
我使用的 FCKeditor
已经弃用多年了。
我需要升级到 CKeditor
(至少升级到 4.4+,但是 CKeditor
文档没有指定每个版本的最低要求。需要什么 PHP
版本等等?
遗憾的是 CKeditor
没有论坛可以提出一般性问题,他们将所有问题都提交给 Whosebug。
有人知道最低要求吗?
https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_savedata 说:
CKEditor helps you create content but it is the role of your website or application to deal with the data created in this way. Saving data is a server-side operation and you are free to implement the save functionality on your own, in any way you like. CKEditor is a pure JavaScript component and it does not offer anything more than JavaScript methods and events to access the data so that you could save it on the server.
据我的描述和编辑的个人经验来看,它是一个完全客户端的工具。它没有任何服务器端组件。它根本不依赖或要求 PHP 以任何方式。您可以将它与任何服务器端语言或框架集成来决定,只需向/从服务器发出 HTTP 请求。
编辑器是一个客户端工具,我使用编辑器已经很多年了,任何 PHP 版本...但根本不需要 PHP。您也可以使用其他服务器端语言管理 CKEditor 数据。 但 CKEditor 4 和 CKEditor 5 之间存在差异:版本 5 需要 node.js ,请参阅 documentation here
查看 documentation 还有说明。 ..