|
从文档服务器转移过来的图片显示速度很慢,如果图片很多的话 点开一个页面要4 ,5秒。 我将转义好的地址存到表里,在image的bind-attr-src里面填入保存地址的字段,但是这样图片又不显示,这个问题怎么解决? 下附代码
var row = options.row;
if (row != undefined) {
var jsonList = eval("(" + row.val('fPicturePath') + ")");//获取当前数据中attachmentImage对应的关系值并转换json对象
if (jsonList != undefined) {
var docPath = jsonList[0]["docPath"]; // 从json对象中获得docPath
var fileID = jsonList[0]["fileID"];// 从json对象中获得fileID
var url = DocUtils.InnerUtils.getdocServerAction({//调用API通过docPath、fileID的值返回url
"docPath" : docPath,
urlPattern : "/repository/file/view/" + fileID + "/last/content",
isFormAction : false,
context : self.getContext()
});
GoodsInfoData.setValue('fPictureURL',require.toUrl(url));//将转义的地址存在表里,但是清理浏览器缓存后再打开页面图片就不显示
}
} |
|
|