前端代码
注意:必须设置返回类型为Blob类型responseType: ‘blob’ ,否则下载的音频无法播放!
export function recordingDownload(id, fileName) {
return request({
url: process.env.VUE_APP_GATEWAY + '/' + process.env.VUE_APP_CORE + '/recordingDownload/recordingDownload',
method: 'post',
contentType: 'application/json',
data: {
'id': id },
responseType: 'blob'// 必须设置返回类型为Blob类型
}).then<