问题:不能将类型““blob””分配给类型““json””。ts(2769)
疑似写法有误
解决1:(应该有更好的办法)
// httpOptions定义为Object
exportExl(params: any) {
const httpOptions: Object = {
responseType: 'blob'
};
return this.http.post<any>('xxx', params, httpOptions);
}
解决2:
// 不定义接口响应类型
exportExl(params: any) {
return this.http.post('xxx', params, httpOptions);
}