作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在将 Alamofire 更新到 4.0.0 Beta 1 并将 XCode 8 更新到 Beta 6。首先,我得到了 [String:String] is not convertible to [String : Any]
错误代码
let parameter = [
"scope":"\(scope)",
"client": "\(clientId)"
]
Alamofire.request(link, withMethod: .POST, parameters: parameter, encoding: .json).responseJSON
在我更改后将 [String:Any] 添加到参数中,错误消失但产生了新错误:Expression type 'Request' is ambiguous without more context
let parameter:[String:Any] = [
"scope":"\(scope)",
"client": "\(clientId)"
]
最佳答案
原来方法现在是小写的,所以使用 .post
而不是 .POST
关于ios - Alamofire 4.0.0 : [String:String] is not convertible to [String : Any] & Request is ambiguous without more context,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39098799/
我是一名优秀的程序员,十分优秀!