我有像这样的图像上传ajax
$scope.uploadFile = function(){
var file = $scope.myFile;
console.log(file);
var uploadUrl = "/api/upload_image";//It will also goes to '/api/get_data'
//fileUpload.uploadFileToUrl(file, uploadUrl);
var fd = new FormData();
fd.append('file', file);
$http.post(uploadUrl, fd, {
transformRequest: angular.identity,
headers: {'Content-Type': undefined}
})
.success(function(e){
console.log("Success");
})
.error(function(e){
console.log("Error");
});
};
并像这样调用提交形式的ajax。
$http({
url: "/api/get_data",
method: "POST",
dataType:"json",
data:JSON.stringify(this.formData)
}).success(function(data) {
console.log("Success");
}).error(function(error) {
console.log("Error");
});
两者都在工作但是分开,如何将这两个ajax合并为一个,即提交ajax,第二个。
或者有没有办法在第二个ajax中发布图像数据,我使用的是angular + laravel5.2
我在角度视图中的文件输入是
<input type="file" file-model="myFile">
感谢。
答案 0 :(得分:7)
你可以将这两个ajax结合起来发布image和formData,试试吧。
var file = $scope.myFile;
var fd = new FormData();
fd.append('file', file);
fd.append('formData', JSON.stringify(this.formData));
$http({
url: "/api/get_data",
method: "POST",
dataType:"json",
transformRequest: angular.identity,
headers: {'Content-Type': undefined},
data:fd
}).success(function(data) {
要检索formData
,您需要在服务器端脚本编码中解码json。