I get JSON from Google translator API:
{
data = {
translations = (
{
detectedSourceLanguage = en;
translatedText = "\U0434\U0430\U043d\U043d\U044b\U0435";
}
);
};
}
Then i do this:
if data != nil && error == nil {
let decoder = JSONDecoder()
do {
let translated = try! decoder.decode(Data.self, from: data!)
dump(translated)
} catch {
print(error)
}
}
And i fetch this:
MyVocabulary.JSONTranslator.Data
▿ data: MyVocabulary.JSONTranslator.Data.Translations
▿ translations: 1 element
▿ MyVocabulary.JSONTranslator.Data.Translations.TranslatedText
- detectedSourceLanguage: "en"
- translatedText: "Работа"
My structs:
struct Data: Codable {
struct Translations: Codable {
struct TranslatedText: Codable {
var detectedSourceLanguage: String
var translatedText: String
enum CodingKeys: String, CodingKey{
case detectedSourceLanguage
case translatedText
}
init(from decoder: Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.translatedText = try container.decode(String.self, forKey: .translatedText)
self.detectedSourceLanguage = try container.decode(String.self, forKey: .detectedSourceLanguage)
}
}
var translations: ([TranslatedText])
}
let data: Translations
}
how can I get properties from TranslatedText to var in "do" block after decode?
The major mistake is to name a custom struct
Data
because it interferes with the Foundation structData
and decodingData.self
fails.You don't need a custom initializer nor CodingKeys, these 3 structs are sufficient
Now decode
Root.self
and gettranslatedText
as described below