Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 php 脚本,该脚本从远程数据库中检索与图像相对应的 blob。现在我想使用 jquery ajax 调用来获取该 blob,然后将其转换为图像并将该图像设置在 div 中。
我很想知道,这是最好的方法。
有多种方法可以做到这一点。您可以将 blob 转换为 BASE64 字符串,并将 img 标记的 src 属性设置为该 BASE64 字符串。
然而,创建一个直接提供该图像的 php 页面会更容易。当 JS 代码需要图像时,它会创建一个 img 标记并将该标记的 src 属性设置为提供图像的 PHP 页面的 URL。可以通过 URL 查询字符串定义要提供的图像