Could not cast value of type 'NSMutableURLRequest' (0x11beb7040) to 'Alamofire.URLRequestConvertible' (0x11beb9040)

后端 未结 3 1238
别那么骄傲
别那么骄傲 2021-01-03 04:47

when build my code then crash on Alamofire.request(request as! URLRequestConvertible).responseJSON(). pls suggest how to fix this crash

let url         


        
3条回答
  •  遥遥无期
    2021-01-03 05:13

    You can also try with following syntax for request method:

    Alamofire.request(strURL,method: .post, parameters: parameters as? [String : AnyObject], encoding: URLEncoding.default)
    

提交回复
热议问题