angularjs 导出数据到Word:
学习来源是https://www.jianshu.com/p/db35f4763c8a,博主分享的很详细,博主是“每木传情”;
补充一点的就是,在angularjs中使用escape/unescape时,需要事先在ts的顶部声明:
declare function unescape(s:string): string;
declare function escape(s:string): string;
angularjs导出数据到HTML:
安装filesaver,引用filesaver导出数据:
import *as FileSaverfrom 'file-saver/FileSaver';
var blob =new Blob([htmlAll], {type:"text/plain;charset=utf-8"});
FileSaver.saveAs(blob,"博雅寻宝自提申请单.html");