我想从谷歌驱动器下载文件,我正在使用以下代码:-
function downloadFile(file) {
if (file.downloadUrl) {
var accessToken = gapi.auth.getToken().access_token;
var xhr = new XMLHttpRequest();
xhr.open('GET', file.downloadUrl);
xhr.setRequestHeader('Authorization', 'Bearer ' + accessToken);
xhr.onload = function () {
var response = xhr.responseText;
};
xhr.onerror = function () {
alert("Error");
};
xhr.send();
} else {
}
}
文件成功以 xhr.ResponseText 中的二进制格式出现。现在我想提示用户下载。我是java脚本的新手,请帮助我。我正在使用 asp.net MVC 3 框架。
提前致谢。