所以我正在测试我的代码,看看我上传的图片是否已成功转换为base64。当我发出警报(数据)时,我发现这是一堆乱七八糟的未知字符。我想让弹出消息包含base64字符串,以便我可以将它放入在线base64解码器中以确认上传的图像是否正确。
之后我想将文件名+ base64字符串提供给我的php脚本,然后将其写入服务器。
然而,这就是我得到的
http://i.imgur.com/LhqdNxv.png
这是应该拍摄给定图像并将其转换的代码。
var app = angular.module("app", ["ui.bootstrap"]);
//http://stackoverflow.com/questions/18571001/file-upload-using-angularjs
app.factory('API', function ($http) {
return {
uploadImage: function (image) {
return $http.post('/js/upload.php', image);
}
}
});
app.controller('MainController',['$scope', '$http', 'API', function($scope, $http, API) {
$scope.imageUrl = "";
$scope.template = "";
$scope.templates = [];
$scope.templates.push("select an option...");
$scope.templates.push("MakeGray");
$scope.templates.push("Canny");
$scope.templates.push("HSV");
$scope.template = $scope.templates[0];
$scope.add = function() {
var f = document.getElementById('fileToUpload').files[0]; // name of image
var files = document.getElementById('fileToUpload').files;
var r = new FileReader();
r.onload = function(event){
console.log(event.target.result);
}
r.onloadend = function(e) {
var data = e.target.result;
alert(data);
var formData = new FormData();
formData.append("fileToUpload", f,f.name);
API.uploadImage(formData)
.success(function (imgUrl) {
$scope.imageUrl = imgUrl;
})
.error (function (error) {
});
}
r.readAsBinaryString(f);
}
}]);