具有数据库图像上传/预览功能的 asp.net mvc 所见即所得编辑器
是否有任何 jQuery WYSIWYG 编辑器能够上传图像,然后预览数据库中的图像? 也许有一些适配器可以让著名的 CKEditor + CKFinder 与数据库一起使用? 谢谢你!
Is there any jQuery WYSIWYG editor w/ ability to upload and then preview images to/from the database?
Maybe there are kinda adapters for well-known CKEditor + CKFinder to work with database?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
" 使用时最好的所见即所得编辑器是什么ASP.NET MVC 框架?”有一些所见即所得的建议。就我个人而言,我喜欢 TinyMCE。他们有一个非常漂亮的图像管理器。
图像。
(如果启用了 GD)。
可定制的配置。
“弹出”模式。包含完整源代码,未混淆。
使用 JSON 桥的接口。多语言支持。
就数据库图像支持而言,您可以使用图像列表(请参阅 http: //www.tinymce.com/forum/viewtopic.php?id=12634 用于 php 中的类似讨论):
其中
ImageController.List()
是返回 JSON 的控制器操作指向从数据库检索的图像的操作链接数组,ImageController.View(id)
是一个返回图像的操作:然后要上传,您需要创建另一个接受发布的操作文件(图像)并将其保存到您的数据库中。有一些开源插件可以为您处理此问题:
" What's the best WYSIWYG editor when using the ASP.NET MVC Framework? " has a few WYSIWYG suggestions. Personally, I like TinyMCE. They have an image manager that's pretty slick too.
images.
(if GD is enabled).
customizable configuration.
"popup" mode. Full source included, not obfuscated.
interface using a JSON bridge. Multilanguage support.
As far as database image support goes, you can use an image list (see http://www.tinymce.com/forum/viewtopic.php?id=12634 for similar discussion in php):
Where
ImageController.List()
is a controller action that returns a JSON array of action links to your images retrieved from the database andImageController.View(id)
is an action that returns an image:Then to upload, you'll need to create another action that will accept a posted file (image) and save it to your database. There are a few open source plugins that will take care of this for you:
我正在使用 http://labs.core Five.com/projects/filemanager/ 插件。支持CKEditor和FCKEditor。
当然,您必须对要存储文件等的部分进行编程。但它们确实包含一些示例。
i'm using http://labs.corefive.com/projects/filemanager/ plugin. Supports CKEditor and FCKEditor.
Ofcourse you have to program the part where you want to store the files etc. But they do have a few examples included.