通过 Ajax 的图像数据 - 如何在页面上显示图像
我正在通过 AJAX 创建一个包含照片的 Domino 文档。 我能够在 Notes Domino 文档中将 Base64 图像数据返回到服务器。
数据存储在 Richtext(文本区域)字段中,因为
"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAFA..........." - (this goes on for several lines)
我尝试使用
<<image id= "pic1" >>
表单的 onLoad 事件中的 passthru 标记在 Domino 网页上显示我尝试使用以下代码将数据推送到图像元素中:
//Photo Stuff
alert(document.forms[0].photo1.value);
document.getElementById("pic1").src = document.forms[0].photo1.value;
警报正在显示数据。 图片没有出现。
请帮忙。
谢谢
麦克风
I am creating a Domino Document via AJAX that contains a photo.
I am able to get the base64 image data back to the server in a Notes Domino Document.
Data is stored in a Richtext (textarea) field as
"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAFA..........." - (this goes on for several lines)
I am trying to display on the Domino Webpage using passthru tag
<<image id= "pic1" >>
in the onLoad event of the Form i try to shove the data into the image element using this code:
//Photo Stuff
alert(document.forms[0].photo1.value);
document.getElementById("pic1").src = document.forms[0].photo1.value;
The alert is showing the data.
Picture is not appearing.
Please help.
Thanks
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的印象是使用数据 URI 可以实现内嵌图像。
喜欢:
或
编辑:经过测试...这是一个 jsFiddle:
http://www.jsfiddle.net/UySAb /1/
Mozilla 的相关信息:https://developer.mozilla.org/en/The_data_URL_scheme
注意:Josiah 在他的评论中也是正确的,你的目标标签需要是 img,而不是 image。
I was under the impression that inline images were possible using a data URI.
Like:
Or
Edit: tested... here's a jsFiddle:
http://www.jsfiddle.net/UySAb/1/
Mozilla's information on this: https://developer.mozilla.org/en/The_data_URL_scheme
Note: Josiah in his comments is correct as well, your target tag needs to be img, not image.
您只需创建一个
Image
对象并将base64作为其src
,包括data:image...
部分像这样:这就是他们所说的“数据 URI”,这里是 内心平静的兼容性表。
You can just create an
Image
object and put the base64 as itssrc
, including thedata:image...
part like this:It's what they call "Data URIs" and here's the compatibility table for inner peace.