[SWIFT] Alamofire 화재 변수 유형에는 첨자 회원이 없습니다
SWIFTAlamofire 화재 변수 유형에는 첨자 회원이 없습니다
해결법
-
1.당신은 추가 할 필요가? [문자열 : 어떤]
당신은 추가 할 필요가? [문자열 : 어떤]
Alamofire.request(yourURL).responseJSON { (response) in switch response.result { case .success: if let JSON = response.result.value as? [String: Any] { let message = JSON["message"] as! String print(message) } case .failure(let error): // error handling } }
-
2.나는 솔루션은 다음과 같이 변경하는 것이 었 나를 위해, 비슷한 문제가 있었다
나는 솔루션은 다음과 같이 변경하는 것이 었 나를 위해, 비슷한 문제가 있었다
let urladdress = "https://api.github.com/users" Alamofire.request(urladdress).responseJSON(completionHandler: { response in print(response) })
from https://stackoverflow.com/questions/39502357/alamofire-fire-variable-type-has-no-subscript-members by cc-by-sa and MIT license
'SWIFT' 카테고리의 다른 글
[SWIFT] 스위프트 - 재산에 사용자 정의 세터 (0) | 2020.11.06 |
---|---|
[SWIFT] 스위프트 - 비디오 파일을 압축 (0) | 2020.11.06 |
[SWIFT] 사용은 열거 사건을 키워드 예약 (0) | 2020.11.06 |
[SWIFT] 어떻게 MKPointAnnotation에 버튼을 추가하려면? (0) | 2020.11.06 |
[SWIFT] 스위프트 2 - 패턴 매칭에서 "만약" (0) | 2020.11.06 |