codable Swift의 [String: Any]를 디코딩하는 방법은 무엇입니까? JSON을 [String: Any]로 디코딩해야 합니까? 다음은 이 작업을 수행하는 방법입니다. 대답은 Any 유형을 사용하여 이 작업을 수행할 수 없다는 것입니다. Any 보다 구체적인 것을 지정해야 합니다. Dictionary is automatically decodable if its elements are decodable. Type Any is not decodable. 그러나 대답... codablejsonswift
Swift의 [String: Any]를 디코딩하는 방법은 무엇입니까? JSON을 [String: Any]로 디코딩해야 합니까? 다음은 이 작업을 수행하는 방법입니다. 대답은 Any 유형을 사용하여 이 작업을 수행할 수 없다는 것입니다. Any 보다 구체적인 것을 지정해야 합니다. Dictionary is automatically decodable if its elements are decodable. Type Any is not decodable. 그러나 대답... codablejsonswift