我正在尝试从API获取JSON响应,我遇到的问题是我试图通过JSON进行解析,而我不断收到此错误
Cannot subscript a value of type 'String' with an index of type 'String'
这是在我收到使用Alamofire的回复之后的情况:
AF.request("http://localhost:8080/todos").responseJSON { response in
print(response.description["username"])
}
但是当我尝试使用以下方法进行解析时:
print(response.description["username"])
那是当我最终遇到错误时,我想知道自己是在做错什么,还是错过了一个步骤