嗨,我正在使用NgimgCrop
并且我成功获得了 base64 图像现在我想在http post
请求中使用多部分表单数据发送它。
我的文件上传代码看起来像这样
scope.myCroppedImage = '';
$scope.uploadFile = function (file) {
if (file) {
// ng-img-crop
var imageReader = new FileReader();
imageReader.onload = function (image) {
$scope.$apply(function ($scope) {
$scope.myImage = image.target.result;
$scope.profileData.data = $scope.myImage;
console.log($scope.profileData.data);
});
};
imageReader.readAsDataURL(file);
}
};
有什么方法可以在 base64 之后将其转换为 angular 的多部分?我尝试了各种链接,但没有任何效果。