图像上传插件与 django admin 和 tiny MCE 一起使用
我正在寻找一种通过小型 mce 插件将图像上传到 django filefield
的方法。
我尝试使用 这些 说明使用 IBrowser,并认为我可以然后只需编写一个 python 脚本来代替插件附带的 php 脚本。但我什至无法使用这些说明显示按钮,更不用说重写它以使其与 django 一起使用了。
所以我想知道是否有一种众所周知的方法来创建一个与 django 一起使用的上传图像按钮并将上传到您的服务器,或者我是否可以让 ibrowser 以这种方式工作。
目前,tinymce 已按照 django wiki 建议提供给我的 django 管理员。我尝试添加具有以下文件结构的 ibrowser:
-tinymce
-plugins
-ibrowser
-editor_plugin.js
-editor_plugin_src.js
-...
但按钮没有出现。
我再次热衷于如何让它与 ibrowser 插件或更好的解决方案一起工作。
I'm looking for a way to upload images to a django filefield
through a tiny mce plugin.
I've tried using IBrowser using these instructions and figured I could then just write a python script in place of the php script that comes with the plugin. But I can't even get the button to display with those instructions, let alone rewrite it so that it works with django.
So I'm wondering if there is a well know way to create an upload image button that works with django and will upload to your server or if I can get ibrowser to work in this way.
Currently, tinymce is served to my django admin following the django wikis suggestions. I've tried adding ibrowser with the following file structure:
-tinymce
-plugins
-ibrowser
-editor_plugin.js
-editor_plugin_src.js
-...
but the button doesn't appear.
Again I'm all ears on how to get this to work with the ibrowser plugin or with a better solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
django-filebrowser
是一个具有tinymce的应用程序支持。您还需要安装 django-grappelli 作为要求,但这将显着改变管理员的外观django-filebrowser
is an app that has tinymce support. You will also need to installdjango-grappelli
as a requirement though which will significantly change the appearance of your admin