我正在使用 phonegap API 使用以下驱动器拍照(或从库中选择):
MyApp.directive('Camera', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function(scope, elm, attrs, ctrl) {
elm.bind('click', function() {
navigator.camera.getPicture(function (imageURI)
{
scope.$apply(function() {
ctrl.$setViewValue(imageURI);
});
}, function (err) {
ctrl.$setValidity('error', false);
},
//Options => http://docs.phonegap.com/en/2.6.0/cordova_camera_camera.md.html#Camera
{ quality: 50,
destinationType:Camera.DestinationType.FILE_URI
})
});
}
};
});
它返回给我一个看起来像的 URI,在 chrome 上使用波纹模拟器,我看不到粘贴这个 URI。
blob:http%3A//localhost%3A8080/8e18de30-d049-4ce2-ae88-8500b444581e
我的问题是加载这个 URI
$scope.updateUserProfile = function (user) {
var myPicfile = $http.get(user.myPicture);
dataService.uploadPicture . . . some code to update the picture to Parse
}
*注意:我不能将 phonegap 文件传输与 parse.com 一起使用:
当我这样做时,我得到:
我提出这样的要求:
uploadPicture: function uploadPicture(user,callback) { var serverUrl = ' https://api.parse.com/1/files/ ' + user.Nick ;
$http({
method: 'POST',
url: serverUrl,
data: user.myPicture,
headers: {'X-Parse-Application-Id': PARSE_APP_ID,
'X-Parse-REST-API-Key': PARSE_REST_API_KEY,
'Content-Type': 'text/plain'
}
})
关于如何将图像内容保存到文件中的任何想法,然后我可以愉快地上传到 Parse.com?
谢谢!