【发布时间】:2020-06-07 13:51:13
【问题描述】:
我已经创建了 akka 服务器,当用户发布一些 json 结构到服务器时发送文件,但我无法打开服务器发送的文件
Akka http 服务器(POST 方法)=> http://localhost:5004/download
val file = new File("src/main/resources/"+path)
HttpResponse(StatusCodes.OK,entity=HttpEntity.fromFile(ContentTypes.`application/octet-stream`,file = file)).withHeaders(
scala.collection.immutable.Seq(
RawHeader("Content-Disposition",s"attachment; filename=${file.getName}"),
RawHeader("Access-Control-Expose-Headers","Content-Disposition"),
RawHeader("Access-Control-Allow-Origin","*"),
)
)
Javascript/React 代码
downloadFile = ()=>{
const tokenData = {
token:this.state.token,
password:this.state.password
}
axios.post("http://localhost:5004/download",tokenData).then(res=>{
var a = document.createElement('a');
console.log(res.data)
var blob = new Blob([res.data], {type:"application/octet-stream"});
a.href = window.URL.createObjectURL(blob);
a.download = res.headers["content-disposition"].split("=")[1];
a.click();
}).catch(res=>{
this.setState({
error:true
})
})
}
【问题讨论】:
-
您能否将问题隔离到前端或后端代码?例如,尝试使用
curl向服务器发出相同的请求。
标签: javascript reactjs scala akka akka-http