我正致力于使用MongooseJS将数据从wordpress环境导出到MongoDB作为数据模型桥。我有一个包含所有必需信息的每个对象的JSON。
作为一个例子,我有一个用户项目,包括一个指向wordpress服务器url的avatarpath字段:(例如:http://url/wp-content/upload/img/avatar.jpg)
我想做什么从网址检索图像,将其上传到我的新存储文件夹,检索新路径,并将新对象存储在我的mongodb中。
我的问题是我无法找到从http get或任何其他方式获取文件数据的方法。通常,我的html中有一个文件输入,我从这个输入的文件对象开始。我该如何开展这项工作?我会走向错误的方向吗?
我找到了这个答案,但它似乎已被弃用: how to upload image file from url using FileReader API?
以下是我现在所拥有的:
$scope.curateurs_data = {};
$scope.curateurs = [];
$http.get('resources/json_curateurs.json').success(function(data) {
$scope.curateurs_data = data;
console.log(data[0]);
$scope.getPics();
});
//RETRIEVE IMAGE DATA
$scope.getPics = function(data){
console.log("RETRIEVING PICTURE")
var uploadPlace = '/upload/user';
var images;
angular.forEach($scope.curateurs_data, function(item, key) {
$scope.curitem = item;
console.log($scope.curitem);
$http.get(item.avatarpath, {responseType: "arraybuffer"}).success(function(data){
var arrayBufferView = new Uint8Array( data );
var blob = new Blob( [ arrayBufferView ], { type: "image/png" } );
var urlCreator = window.URL || window.webkitURL;
var imageUrl = urlCreator.createObjectURL( blob );
console.log(imageUrl);
console.log(blob);
images = blob;
var pic = {
images: images
};
Upload.upload({
url: uploadPlace,
arrayKey: '',
data: pic,
}).then(function(response) {
// Adding data paths to formData object before creating mood
// MUST respect images array order
$scope.curitem.avatarpath = response.data.files[0].path;
console.log(response.data.files[0].path);
});
}).error(function(err, status){})
$scope.curateurs.push($scope.curitem);
});
}
我也尝试过类似的东西,但我似乎无法让它运作良好。
$http.get(item.avatarpath,{responseType: "blob"}).
success(function(data, status, headers, config) {
// encode data to base 64 url
fr = new FileReader();
fr.onload = function(){
// this variable holds your base64 image data URI (string)
// use readAsBinary() or readAsBinaryString() below to obtain other data types
console.log( fr.result );
};
fr.readAsDataURL(data);
console.log(fr.readAsDataURL(data));
}).
error(function(data, status, headers, config) {
alert("The url could not be loaded...\n (network error? non-valid url? server offline? etc?)");
});
答案 0 :(得分:0)
使用后端的节点http对象下载图像。类似的东西:
http.request(url, function(response) {
// Your code to write the file out or store it in the database here.
});