Silverstripe - 通过前端博客模块博客条目,但 tinymce 缺少图像上传/插入按钮
我们允许用户通过前端创建博客条目。但由于某种原因,tinymce 编辑器没有图像上传按钮。作者必须将图像从桌面拖到tinymce 才能插入图像。
有没有办法添加图像按钮,允许作者上传图像并在他们的博客中使用它们?
另外刚刚意识到,也没有“链接”按钮
We allow users to create blog entries via front end. but for some reason the tinymce editor doesn't have image upload button. Authors have to drag the image from their desktop to tinymce to insert an image.
is there a way to add image button allowing authors to upload images and using them in their blog?
Also just realised, there is no "Link" button either
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用下面的代码启用默认的 TinyMCE 图像和链接插入按钮。但是,这不会包含 SilverStripe 特定功能,例如选择要链接的页面或上传图像 - 您必须手动输入链接和图像 URL。
图像和链接插入功能与 2.4 版中的 CMS 紧密相关,但正在作为 3.0 版的一部分进行重写,并将在前端运行。
有关自定义可用功能的更多详细信息,请参阅 HtmlEditorConfig API 文档在所见即所得编辑器中。
You can enable the default TinyMCE image and link insertion buttons using the code below. However, this won't contain the SilverStripe specific functionality such as choosing a page to link to or uploading images - you have to manually enter link and image URLs.
The image and link insertion functionality is quite heavily tied to the CMS in version 2.4, but is being rewritten as part of 3.0 and will work in the front end.
See the HtmlEditorConfig API documentation for more details on customising the functionality available in the WYSIWYG editor.