摘要:
1.请求接口时,请求类型设置为blob;responseType:'blob'; 2.将后端返回的文件流进行转换为ulr,新开窗口下载 let reader = new FileReader(); // 创建读取文件对象 let result: any; reader.addEventListene 阅读全文
摘要:
1.新建一个Subject对象; private searchUserNick = new Subject<string>(); 2.在需要的地方调用这个对象 this.searchUserNick.next(val); 3.在ngOnInit中初始化 ngOnInit() { this.initS 阅读全文