我正在使用jquery-word-export插件(由Marks Windoll开发)将我的网页导出到.doc文档。一切都在谷歌Chrome中运行良好,但在Mozilla Firefox中没有。单击导出按钮时出现以下错误:
SyntaxError:export声明只能出现在模块的顶层
NS_ERROR_NOT_AVAILABLE
奇怪的是,它有时可以刷新网页。
这是什么意思,我该如何解决这个问题?是否有另一种解决方案(或许使用另一个导出库)
编辑:我的代码如下:
<div id="export-content">
<!-- PROFILE PICTURE -->
<div id="divProfielfoto" ng-controller="profielfotoCtrl">
<img id="profielfoto" ng-src="{{profielfoto}}" alt="profielfoto" style="width: 125px;height:125px;margin-bottom: 20px; border-radius:50%; border: 7px solid orange;" /></div>
<input style="display: none;" id="profileUpload" type="file" accept="image/*"/>
<!-- PROFILE PICTURE END -->
</div>
<button class="word-export" onclick="export()">Export as .doc</button>
,导出代码如下:
$(".word-export").click(function (event) {
$("#export-content").wordExport("CV " + naam);
});
答案 0 :(得分:0)
我找到了答案。在一开始,配置文件图片的路径是什么都没有。上传个人资料图片后(路径指向有效图片)一切正常