我试图在XPage应用程序中使用库docxtemplater。
Javascript库 docxtemplater (https://docxtemplater.com/)用作
依赖另一个库opensource jszip-utils.js
(http://stuk.github.io/jszip/)压缩并解压缩docx文件。
问题是XPages中的javascript库jszip-utils.js不是
工作。
我在位于WebContent文件夹下的文件夹(jslib)中插入了javascript库。
这是我的测试页;
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<script src="jslib/main.min.js"></script>
<script src="jslib/angular-expressions.js"></script>
<script src="jslib/jszip.js"></script>
<script src="jslib/jszip-utils.js"></script>
<script src="jslib/FileSaver.min.js"></script>
<xp:button value="Label" id="button1">
<xp:eventHandler event="onclick" submit="false">
<xp:this.script><![CDATA[
var loadFile=function(url,callback){
JSZipUtils.getBinaryContent(url,callback);
}
loadFile("tagExample.docx",function(err,content){
doc=new DocxGen(content)
doc.setData( {"first_name":"Hipp",
"last_name":"Edgar",
"phone":"0652455478",
"description":"New Website",
"image":'image.png'
}
) //set the templateVariables
doc.render() //apply them (replace all occurences of {first_name} by Hipp, ...)
out=doc.getZip().generate({type:"blob"}) //Output the document using Data-URI
saveAs(out,"output.docx")
})]]></xp:this.script>
</xp:eventHandler></xp:button>
</xp:view>
有没有人处理过这个问题?
答案 0 :(得分:0)
当您在网页中查看firebug时,您很可能会看到404的JavaScript。您需要将它们作为脚本库添加到xpages中,并将xpages脚本标记与client属性一起使用,或者将它们添加到web-inf目录并使用脚本标记加载它们。您仍然需要一个客户端事件来触发它们。
答案 1 :(得分:0)
这是AMD加载程序问题。它与XPage的Dojo冲突。
使用此XSnippet进行解决。
您的代码如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core">
<xp:this.resources>
<!-- temporary redefine define.amd object (Dojo AMD loader) -->
<xp:script clientSide="true" type="text/javascript">
<xp:this.contents><![CDATA[${javascript:"if (typeof define === 'function' && define.amd) {if(define.amd.vendor =='dojotoolkit.org'){define._amd = define.amd;delete define.amd;}}";}]]></xp:this.contents>
</xp:script>
<xp:script src="jslib/jszip.js" clientSide="true"></xp:script>
<xp:script src="jslib/jszip-utils.js" clientSide="true"></xp:script>
...
<!-- restore define.amd object (Dojo AMD loader) -->
<xp:script clientSide="true">
<xp:this.contents><![CDATA[${javascript:"if (typeof define === 'function' && define._amd) {define.amd = define._amd; delete define._amd;}"}]]></xp:this.contents>
</xp:script>
</xp:this.resources>
...
答案 2 :(得分:0)
只需在html页面中引用以下Java脚本即可。
<script src="http://kendo.cdn.telerik.com/2016.1.112/js/jszip.min.js"></script>