如何在拖放到 TinyMCE 时将 img 数据更改为 img url?

发布于 2024-12-27 08:44:05 字数 356 浏览 1 评论 0原文

我的 WordPress 博客中有 TinyMCE(和所有博客一样)。当我将图像从计算机光盘拖放到 TinyMCE 窗口时,它会上传并嵌入为带有数据字段的 img。这样做的结果是,以这种方式放置一些图像后,帖子的大小太大,无法正确处理并由 WordPress 保存。

当然,我知道我可以打开图像上传窗口并将图像放置在那里,但如果我可以像现在一样将图像放置到 TinyMCE 窗口,它会像放置框一样工作,这会容易得多。

所以基本上我想象它应该像这样工作:当我将图像拖放到 TinyMCE 时,它会获取图像数据,将其保存到 Wordpress 的图像文件夹中并将 img 数据替换为 img url。

所以...是的...你知道有什么插件可以这样工作吗?

I've TinyMCE in my Wordpress blog (like all). When i drag and drop image from my computer disc to the TinyMCE window it is uploaded and embedded as img with data field. The effect of this is that after putting some images this way size of post is too big to be handled properly and saved by Wordpress.

Of course i know i can open the image upload window and drop image there but it would be so much easier if i could just drop the image like now: directly to the TinyMCE window and it would work like the drop box.

So basically what i imagine it should work like this: when i drop image to TinyMCE it gets the data of image, saves it to image folder of Wordpress and replace the img data to img url.

So... yeah... do you know any plugin that works that way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相守太难 2025-01-03 08:44:05

据我所知没有插件。

您将需要此代码来拦截 drop 事件

$(ed.getDoc()).bind('drop', function(event){

    // you can read out different flavours (html, plain, file, etc....)
     var drag_content_html = event.originalEvent.dataTransfer.getData('text/html');
     var drag_content_plain1 = event.originalEvent.dataTransfer.getData('text/plain');

}

There is no plugin that i know of.

You will need this code to intercept the drop event

$(ed.getDoc()).bind('drop', function(event){

    // you can read out different flavours (html, plain, file, etc....)
     var drag_content_html = event.originalEvent.dataTransfer.getData('text/html');
     var drag_content_plain1 = event.originalEvent.dataTransfer.getData('text/plain');

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文