gpt4 book ai didi

tinymce - 如何在 TinyMCE Editor 中插入按钮以在当前位置插入本地文件作为 RAW 图像?

转载 作者:行者123 更新时间:2023-12-04 15:39:51 25 4
gpt4 key购买 nike

如何将自定义/默认按钮添加到 TinyMCE 编辑器,以便能够选择本地镜像并将其作为 RAW (BASE64) 图像插入到编辑器中的当前位置?

最佳答案

我刚刚从 this answer 尝试了这个.

window.onload = function () {
document.getElementById("fileName").onchange = function () {
var reader = new FileReader();
reader.readAsDataURL(this.files[0]);
reader.onload = function () {
console.log(reader.result);
document.getElementById("img").src = reader.result;
};
reader.onerror = function (error) {
console.log('Error: ', error);
};
};
};
<input type="file" name="fileName" id="fileName" /><br />
<img src="https://dummyimage.com/250x75/000/fff.png&text=Select+an+Image" id="img" style="max-width: 250px; max-height: 75px;" />


使用上面的 URL(参见控制台或检查元素并找到 src)和 inserting an image at the current position , 您可以在当前插入符号的位置插入文档内部的图像。

关于tinymce - 如何在 TinyMCE Editor 中插入按钮以在当前位置插入本地文件作为 RAW 图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47335732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com