我正在尝试使用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)
}
}
}
,没有任何工作,我的代码出了什么问题?