0
因此,我正在編寫一個應用程序以將docx內容加載到textarea html中。 我使用Docxgen做,但收到以下錯誤消息:
未捕獲的ReferenceError:DocxGen不是在限定的index.html :25 在XMLHttpRequest.xhr.onreadystatechange(jszip-utils.js:92)。
有人可以幫我解決這個錯誤。 下面是代碼:未捕獲的ReferenceError:DocxGen未定義
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/build/docxgen.min.js"></script>
<script src="js/vendor/file-saver.min.js"></script>
<script src="js/vendor/jszip-utils.js"></script>
<script>
$(function(){
loadFile("C:/Path/Test.docx",function(err,content){
var doc= new DocxGen(content);
text=doc.getFullText();
$("textarea").val(text);
});
function loadFile(url,callback){
JSZipUtils.getBinaryContent(url,callback);
}
});
</script>
`
我試過你的解決方案,但沒有工作,我得到了同樣的錯誤信息。 – Jose