我无法下载文件以响应ajax发布请求。
$(function(){
$('img.download').click(function() {
var image_path = $(this).attr('class').split(" ")[1]
$.ajax({url:'/download',type:'POST',data:{image_path:image_path}})
})
})
Node.js代码
app.post('/download',function(req,res){
//var image_path = req.body.image_path
//var filename = 'new.png'
res.set({
'Content-Type': 'application/octet-stream',
'Content-Disposition': 'attachment;filename=\"new.png\"'
})
//res.set('Content-type', 'image/png')
//var filestream = fs.createReadStream('public/uploads/new.png')
//filestream.pipe(res)
res.download('public/uploads/new.png')
})
答案 0 :(得分:1)
好像您希望图像单击以触发下载对话框。如果是这种情况,请不要使用Ajax。发送帖子并让浏览器处理对话框。点击结果可以通过创建简单表单来完成。
$("img.download").click(function () {
var image_path = $(this).attr('class').split(" ")[1];
var form = $('<form>', {action: '/download', method: 'POST'});
form.append($('<input>', {name: 'image_path', value: image_path}));
form.submit();
});
(请注意,在您的示例中,内容处置的res.set
将在res.download
中被覆盖。这基本上都是res.download
所做的;它设置了content-disposition然后调用sendfile
。)