Can Swift 4's JSONDecoder be used with Firebase Realtime Database?
问题 I am trying to decode data from a Firebase DataSnapshot so that it can be decoded using JSONDecoder. I can decode this data fine when I use a URL to access it with a network request (obtaining a Data object). However, I want to use the Firebase API to directly obtain the data, using observeSingleEvent as described on this page. But, when I do this, I cannot seem to convert the result into a Data object, which I need to use JSONDecoder. Is it possible to do the new style of JSON decoding with