angularjs $http file图片上传
发布于 13 小时前 作者 kezhi 68 次浏览 来自 分享
	$http({
					url: API_URL+'uploadimage',
					method: 'POST',
					headers: {
						'Content-Type': undefined
					},
					transformRequest: function() {
						var formData = new FormData();
						formData.append('file', $('#upfile')[0].files[0]);
						return formData;
					}
				}).success(function (data) {
					console.log(data);   //返回上传后所在的路径
				});
回到顶部