首先是iOS端代码,导入AFNetworking后,可以用下面的方法实现上传:
+ (void)uploadImageWithImage:(UIImage *)image pid:(NSString *)pid success:(void (^)(id responseObject))success failureHandler:(void(^)(NSError *error)) failure{
/*
此段代码如果需要修改,可以调整的位置
1. 把upload.php改成网站开发人员告知的地址
2. 把file改成网站开发人员告知的字段名
*/
//AFN3.0+基于封住HTPPSession的句柄
AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
NSDictionary *dict = @{@"username":@"Saup"};
//formData: 专门用于拼接需要上传的数据,在此位置生成一个要上传的数据体
[manager POST:[@"upload.php"] parameters:dict constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
NSData *data = UIImagePNGRepresentation(image);
// 在网络开发中,上传文件时,是文件不允许被覆盖,文件重名
// 要解决此问题,
// 可以在上传时使用当前的系统事件作为文件名
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
// 设置时间格式
formatter.dateFormat = @"yyyyMMddHHmmss";
NSString *str = [formatter stringFromDate:[NSDate date]];
NSString *fileName = [NSString stringWithFormat:@"%@.png", str];
//上传
/*
此方法参数
1. 要上传的[二进制数据]
2. 对应网站上[upload.php中]处理文件的[字段"file"]
3. 要保存在服务器上的[文件名]
4. 上传文件的[mimeType]
*/
[formData appendPartWithFileData:data name:@"file" fileName:fileName mimeType:@"image/png"];
} progress:^(NSProgress * _Nonnull uploadProgress) {
//上传进度
// @property int64_t totalUnitCount; 需要下载文件的总大小
// @property int64_t completedUnitCount; 当前已经下载的大小
//
// 给Progress添加监听 KVO
NSLog(@"%f",1.0 * uploadProgress.completedUnitCount / uploadProgress.totalUnitCount);
} success:^(NSURLSessionDataTask * _Nonnull task, id _Nullable responseObject) {
NSLog(@"上传成功 %@", responseObject);
params: dic sucesshander:success failurer:failure];
}else{
NSLog(@"%@",@"上传失败");
}
} failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
NSLog(@"上传失败 %@", error);
}];
}
PHP laravel 框架代码:
public function savePic(Request $request){
if(!$request->hasFile('file')){
return $this->returnResponse(500,'上传文件为空!');//这是自己写的返回信息方法,你可以根据自己的修改
}
$file = $request->file('file');
//判断文件上传过程中是否出错
if(!$file->isValid()){
return $this->returnResponse(500,'文件上传出错!');
}
$newFileName = md5(time().rand(0,10000)).'.'.$file->getClientOriginalExtension();
$savePath = 'upload/'.date('Y-m-d',time()).'pic/'.$newFileName;
$bytes = Storage::put(
$savePath,
file_get_contents($file->getRealPath())
);
if(!Storage::exists($savePath)){
return $this->returnResponse(500,'保存文件失败!');
}
return $this->returnResponse(200,$savePath);
}