无论如何下载文本文件并使用 HTML5/JavaScript 显示其内容?我更愿意将其保存到内存位置,但将其保存到临时文件将是第二种选择。
- 更新 -
根据下面的声明。到目前为止,这是我使用 AngularJS 从 Atmos ObjectStore 获取文件的结果。我不清楚如何呈现文件内容。
var app = angular.module('MyTutorialApp',[]);
app.controller("MainController", function($scope, $http) {
console.log("starting download");
$scope.downloadedFile = null;
var config = {headers: {
'Accept': '*/*'
}};
$http.get('https://some_path/theFile.txt?uid=myUUID&expires=1396648771&signature=mySignature', config)
.success(function(data) {
$scope.downloadedFile = data;
console.info(data);
console.log("finished download");
});
});