我正在使用 AngularJS 构建一个 Web 应用程序,允许用户上传他们自己的图像。现在我所有的数据都是基于文本的,所以我将基于文本的数据存储在 Firebase 中。据我所知,Firebase 无法存储图像。我想要做的是将用户生成的图像存储在某个简单的地方(我在想 Amazon S3 甚至 Dropbox),然后通过唯一的 URL 引用这些图像,我会将其作为文本存储在 Firebase 中。
我的问题:
这看起来是一种有效的方法吗?
任何托管图像的推荐服务?
如何将图片上传到托管服务并获取图片的唯一 URL?
现在我允许用户使用以下代码在前端上传图片,只是不确定一旦我有了这些图片该怎么处理。将不胜感激任何帮助,我对此很陌生!
HTML
<output id="list"></output>
<input type="file" id="files" name="files[]" class="button" multiple />
<a href="#" id="camera" class="button" ng-click="getImages()" prevent><i class="icon-camera"> Upload Pictures</i></a>
角度控制器
$scope.getImages = function(){
$("input[type='file']").trigger('click');
}
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
console.log(f);
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', escape(theFile.name), '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
}
document.getElementById('files').addEventListener('change', handleFileSelect, false);