我在变量中有一个照片来源,我想发布一个API,用于将照片保存在服务器中作为图像格式。
请帮帮我。
我被困了2天。
我正在使用角度js工厂来保存图像src var imagecollection = theService.getData(keyValue [i]);
我正在使用Angularjs post方法发布src。
$ scope.uploadFiles = function(){ theService.sendData('odometerurl',$ scope.odoimage);
tempdata = {};
// console.log(keyValue[i]);
var imagecollection = theService.getData('odometerurl');
// alert(imagecollection);
var base64String = imagecollection;
var request = {
method: 'POST',
url: 'http://localhost:54570/api/FileUpload/Base64ToImage',
data: base64String,
headers: {
'Content-Type': undefined
}
};
// SEND THE FILES.
$http(request)
.success(function (d) {
// alert(d + ' Success');
})
.error(function (d) {
// alert(d + ' failed');
});
}
但我不知道如何发布图像并使用webapi保存图像。
请帮帮我。