我写了一个简单的 Visualforce 页面,让用户上传图像文件,然后将文件保存到ContentVersion
对象。
现在我想在我的自定义 visualforce 页面中显示保存的图像。甚至可能吗?貌似<apex:image>
不能用。也<img href="{!cv.contentVersion}"...>
没有运气。
真正的问题是我确实成功上传了图像文件,但它的 URL 是什么?我在谷歌外部使用随机 URL 进行了测试,我可以显示图像(如 /../..some.jpg")。但我无法弄清楚已上传到 contentversion 的图像文件的绝对 URL 是什么.
注意:这不是静态资源,因为我的用户可能会经常上传图片来更改他们的用户图片。
代码
public with sharing class ImageUploadTestController {
public blob file { get; set; }
public String imageFilePath { get; set; }
public ContentVersion cv { get; set; }
public ImageUploadTestController() {
cv = [select id, versionData, title, pathOnClient FROM ContentVersion limit 1];
}
//fill out the inputFile field and press go. This will upload file to the server
public PageReference go() {
ContentVersion v = new ContentVersion();
v.versionData = file;
v.title = 'some title';
v.pathOnClient ='/foo.jpeg';
insert v;
return new PageReference('/' + v.id);
}
//v.id sample
//069A00000009Ux3
}//end class
视觉力量页面
<apex:page controller="ImageUploadTestController">
<apex:form >
<apex:inputFile value="{!file}" />
<apex:commandbutton action="{!go}" value="go"/>
</apex:form>
<!-- none of below works!! :( -->
<a href="/{!cv.id}">{!cv.title} {!cv.pathOnClient}</a>
<a href="https://na7.salesforce.com/069A00000009FG4"></a>
<apex:image value="/069A00000009Ux3" width="220" height="55"/>
</apex:page>