我正在尝试使用mongodump命令从服务器远程(即通过浏览器)下载Mongo转储。
后端是Flask服务器,如下所示:
@api.route('/export', methods=['GET'])
def exportDb():
subprocess.check_output(['mongodump','--archive=db.gz', '--gzip', '--db', 'my_db'])
response = make_response(open('db.gz', 'r').read())
response.headers["Content-Disposition"] = "attachment; filename=db.gz"
return response
前端使用AngularJs,如下所示:
$http({
method: 'GET',
url: '/intro/export'
}).then(function(response) {
var blob = new Blob([response.data], {type: 'application/zip, application/octet-stream'});
var objectUrl = URL.createObjectURL(blob);
window.open(objectUrl);
}
存档是在服务器端正确创建的,但我无法将其发送到客户端。发送请求时,会打开一个新选项卡,用于下载以guid命名的文件,因此不能" db.gz",并且该文件无法使用任何存档客户端打开,所以我一定错过了一些东西发送或保存时。
非常感谢任何帮助。
答案 0 :(得分:2)
所以我这样做了:
@api.route('/exportDB', methods=['GET'])
def exportDB():
subprocess.check_output(['mongodump','--archive=db.gz', '--gzip', '--db', 'my_db'])
response = send_from_directory("path/to/folder", 'db.gz', as_attachment=True)
response.headers["Content-Type"] = "application/javascript"
return response
在客户端,我有:
$http({
method: 'GET',
url: '/intro/exportDB',
responseType: 'blob'
}).then(function(response) {
var data = new Blob([response.data]);
saveAs(data, "db.gz");
}
saveAs来自here
中的Filesaver.js