Download file from ajax and ActionResult

后端 未结 2 1340
既然无缘
既然无缘 2021-01-18 16:47

I want to download files on browser with ajax and ActionResult. The file is downloaded and returned from my ActionResult.

I see the Http query is ok and see the data

2条回答
  •  醉话见心
    2021-01-18 17:07

    I changed of idea. I simply send my pdf (from my controller) in 64 base and make in the ajax :

    success: function (data) {
         window.open("data:application/pdf;base64," + data.data, '_blank'); 
    }
    

提交回复
热议问题