在Alfresco中使用JavaScript无法在HTML文档中显示图像

时间:2014-05-20 19:12:13

标签: alfresco alfresco-share

我在我的javascript代码中定义了一个图片网址:

var boxwidth = document.properties["sc:price"];
content += "<body align=\"center\"><font face= \"Comic sans MS\">";
content += "<b>Retail Price: </b>" + price + "<br><br>";
var urlStr = document.assocs["sc:relatedDocuments"][0].url;
//image document url
var res = "http://hostname:port/share/proxy/alfresco/api/node/content/"+urlStr.substring(4);
document.content = content;

我必须将此作为src属性传递给图像:

content += "<img src=\"'+res+'\" width = \"65px\" height = \"35px\"/>";

以这种方式链接网址:

var str = "View Image";
var result = str.link(res);
content += result+"<br><br>";

但是我无法在HTML文档中看到图像。任何人都可以指导为什么会发生这种情况以及替代方案是什么?

0 个答案:

没有答案