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.
我通过 GridFS 存储图像文件,是否可以在树枝中渲染这些图像?现在我可以通过在 Response 对象中设置标题内容类型和内容来在控制器中呈现它,但是当呈现带有从 MongoDB 存储在树枝中的图像的文档列表时,我该怎么做呢?
亲切的问候,
我搜索后所做的是返回
"data:".$this->getMimeType().";base64," . base64_encode($this->file->getMongoGridFSFile()->getBytes())
在图像标签的 src 属性中。
我不确定它是否有任何缺点,是否可以缓存,请告诉我。
最好通过 http(例如,使用 nginx-gridfs)将图像直接提供给用户,然后放置 src 链接。