我正在尝试在表单中上传的页面中显示图像。在页面中,我首先获取了记录的 ID,并根据记录我想显示我使用此代码的图像
<img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<%=rec.FileUpload%>&sharedBy=userName&appLinkName=app1&viewLinkName=view1'>
//风格
但它不显示图像。谁能让我知道我必须在哪里更改才能显示图像?
我正在尝试在表单中上传的页面中显示图像。在页面中,我首先获取了记录的 ID,并根据记录我想显示我使用此代码的图像
<img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<%=rec.FileUpload%>&sharedBy=userName&appLinkName=app1&viewLinkName=view1'>
//风格
但它不显示图像。谁能让我知道我必须在哪里更改才能显示图像?
首先,确保字段类型是文件上传而不是图像字段。
添加公式字段并添加以下表达式:
("http://creatorexport.zoho.com/DownloadFile.do?filepath=/" + <Your Field Name> + "&sharedBy=" + zoho.adminuser) + "&appLinkName="+Zoho.Appname+&viewLinkName=<your report name>"
在页面中获取记录的 ID。
<% Variable = Form Name [ID == IdFieldName];%>
样本是
<%r = Add_Event [ID == input.EventID.toLong()];%>
关于 Id 获取 Image 字段
<img src=<%=r.Formula%>>
现在图像显示在页面中。