我用base64源创建了一个img元素字符串。当试图在sap.ui.richtexteditor.RichTextEditor中显示它时,我什么也没得到。如何显示呢?看看我的代码。
// controller
var template = {};
var image ="<img src="data:image/bmp;base64,/9j/4AAQSkZJRg...">";
template.body = image;
var oViewModel = new JSONModel(template);
this.getView().setModel(oViewModel, "template");
//view
<rte:RichTextEditor id="rte" value="{template>/body}" editorType="TinyMCE4" customToolbar="true" showGroupFont="true" showGroupInsert="true"
showGroupLink="true" height="360px"/>
答案 0 :(得分:1)
为什么不使用Image Control?
<Image src='data:image/png;base64,iVBORw0KGgoA...........=='/>