使用ng-bindhtml在xls文件中导出表

时间:2016-07-26 09:36:54

标签: javascript angularjs excel

当我在表格中使用此功能时。

<div id="exportable">
<table border="1" width="100%">
    <thead>
    <td>Question</td>
    <td>Answer</td>
    </thead>
    <tbody>
    <tr data-ng-repeat="q in ques">
    <td>{{q.Title}}</td>
    <td ng-bind-html="ans[$index+1]"></td>
    </tr>
    </tbody>
</table>
</div>

{{1}}

excel文件就像 this

额外的“—来自每一行。如何删除它

1 个答案:

答案 0 :(得分:0)

我使用过这个脚本

for(var i=0;i<ans.length;i++){
    ans[i] = ans[i]..replace(/\u200B/g,'');
}