使用Alamofire 3从相机上传图像

时间:2015-10-12 18:09:27

标签: swift swift2 alamofire

我正在尝试使用Alamofire将相机拍摄的图像上传到我的服务器。

我已经这样做了,但由于某种原因它不会进入setTimeout(function() { $(window).on('hashchange', function() { alert('hello'); }); }, 0); 区块,

if

我也试过 func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String: AnyObject]){ print("Picker returned successfully") if let imageURL = info[UIImagePickerControllerMediaURL]{ print(imageURL) Alamofire.upload(.POST, "http://example.com/v2/helper/uploadImageFile", file: imageURL as! NSURL).responseJSON { response in debugPrint(response) } } } ,没有任何工作,我的代码出了什么问题?

0 个答案:

没有答案