How to Custom Decode each element of an array using Swift Decodable
I am decoding a weather JSON response, and I want to pass information to a child decoder which will be decoding an array. How can I pass in this information for every JSON array element while decoding with Swift Decodable?
I am trying to do the above in the latest Swift version (4.2), and I've already implemented the necessary code to successfully custom decode the same model as is being used in the array. I have been unable to decode the entire array.
struct DataBlock: Decodable {
/..
let weather: [DataPoint]?
init(from decoder: Decoder) throws {
try self.init(from: decoder, units: .unit)
}
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/..
let nestedDecoder = try values.superDecoder(forKey: .weather)
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
}
enum CodingKeys: String, CodingKey {
/..
case weather
}
}
And in the DataPoint model:
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/...
if let value = try values.decodeIfPresent(Double.self, forKey: .value) {
self.value = Example(value: value, units: units)
} else {
self.value = nil
}
/..
}
The relevant part of the JSON structure I am trying to decode:
"datablock": {
"weather": [
{
/..
"value": 22.72
/..
}
]
}
I expect the decoder to pass in
units
and decode each array element manually.
However I get a debug error:
"Expected to decode Dictionary<String, Any> but found an array instead."
The error gets triggered here:
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
arrays swift decodable
add a comment |
I am decoding a weather JSON response, and I want to pass information to a child decoder which will be decoding an array. How can I pass in this information for every JSON array element while decoding with Swift Decodable?
I am trying to do the above in the latest Swift version (4.2), and I've already implemented the necessary code to successfully custom decode the same model as is being used in the array. I have been unable to decode the entire array.
struct DataBlock: Decodable {
/..
let weather: [DataPoint]?
init(from decoder: Decoder) throws {
try self.init(from: decoder, units: .unit)
}
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/..
let nestedDecoder = try values.superDecoder(forKey: .weather)
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
}
enum CodingKeys: String, CodingKey {
/..
case weather
}
}
And in the DataPoint model:
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/...
if let value = try values.decodeIfPresent(Double.self, forKey: .value) {
self.value = Example(value: value, units: units)
} else {
self.value = nil
}
/..
}
The relevant part of the JSON structure I am trying to decode:
"datablock": {
"weather": [
{
/..
"value": 22.72
/..
}
]
}
I expect the decoder to pass in
units
and decode each array element manually.
However I get a debug error:
"Expected to decode Dictionary<String, Any> but found an array instead."
The error gets triggered here:
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
arrays swift decodable
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20
add a comment |
I am decoding a weather JSON response, and I want to pass information to a child decoder which will be decoding an array. How can I pass in this information for every JSON array element while decoding with Swift Decodable?
I am trying to do the above in the latest Swift version (4.2), and I've already implemented the necessary code to successfully custom decode the same model as is being used in the array. I have been unable to decode the entire array.
struct DataBlock: Decodable {
/..
let weather: [DataPoint]?
init(from decoder: Decoder) throws {
try self.init(from: decoder, units: .unit)
}
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/..
let nestedDecoder = try values.superDecoder(forKey: .weather)
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
}
enum CodingKeys: String, CodingKey {
/..
case weather
}
}
And in the DataPoint model:
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/...
if let value = try values.decodeIfPresent(Double.self, forKey: .value) {
self.value = Example(value: value, units: units)
} else {
self.value = nil
}
/..
}
The relevant part of the JSON structure I am trying to decode:
"datablock": {
"weather": [
{
/..
"value": 22.72
/..
}
]
}
I expect the decoder to pass in
units
and decode each array element manually.
However I get a debug error:
"Expected to decode Dictionary<String, Any> but found an array instead."
The error gets triggered here:
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
arrays swift decodable
I am decoding a weather JSON response, and I want to pass information to a child decoder which will be decoding an array. How can I pass in this information for every JSON array element while decoding with Swift Decodable?
I am trying to do the above in the latest Swift version (4.2), and I've already implemented the necessary code to successfully custom decode the same model as is being used in the array. I have been unable to decode the entire array.
struct DataBlock: Decodable {
/..
let weather: [DataPoint]?
init(from decoder: Decoder) throws {
try self.init(from: decoder, units: .unit)
}
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/..
let nestedDecoder = try values.superDecoder(forKey: .weather)
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
}
enum CodingKeys: String, CodingKey {
/..
case weather
}
}
And in the DataPoint model:
init(from decoder: Decoder, units: Units) throws {
let values = try decoder.container(keyedBy: CodingKeys.self)
/...
if let value = try values.decodeIfPresent(Double.self, forKey: .value) {
self.value = Example(value: value, units: units)
} else {
self.value = nil
}
/..
}
The relevant part of the JSON structure I am trying to decode:
"datablock": {
"weather": [
{
/..
"value": 22.72
/..
}
]
}
I expect the decoder to pass in
units
and decode each array element manually.
However I get a debug error:
"Expected to decode Dictionary<String, Any> but found an array instead."
The error gets triggered here:
self.weather = try [DataPoint(from: nestedDecoder, units: units)]
arrays swift decodable
arrays swift decodable
edited Jan 3 at 2:47
JackFrost
asked Jan 3 at 0:10
JackFrostJackFrost
14
14
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20
add a comment |
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20
add a comment |
1 Answer
1
active
oldest
votes
This solves my issue by letting me 'walkthrough' each JSON array element and decode each separately:
struct DataBlock: Decodable {
/..
init(from decoder: Decoder, units: Units) throws {
/..
var data = [DataPoint]()
var dataContainer = try values.nestedUnkeyedContainer(forKey: .data)
while !dataContainer.isAtEnd {
let nestedDecoder = try dataContainer.superDecoder()
let dataPoint = try DataPoint(from: nestedDecoder, units: units)
data.append(dataPoint)
}
self.data = data
/..
}
/..
}
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014809%2fhow-to-custom-decode-each-element-of-an-array-using-swift-decodable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This solves my issue by letting me 'walkthrough' each JSON array element and decode each separately:
struct DataBlock: Decodable {
/..
init(from decoder: Decoder, units: Units) throws {
/..
var data = [DataPoint]()
var dataContainer = try values.nestedUnkeyedContainer(forKey: .data)
while !dataContainer.isAtEnd {
let nestedDecoder = try dataContainer.superDecoder()
let dataPoint = try DataPoint(from: nestedDecoder, units: units)
data.append(dataPoint)
}
self.data = data
/..
}
/..
}
add a comment |
This solves my issue by letting me 'walkthrough' each JSON array element and decode each separately:
struct DataBlock: Decodable {
/..
init(from decoder: Decoder, units: Units) throws {
/..
var data = [DataPoint]()
var dataContainer = try values.nestedUnkeyedContainer(forKey: .data)
while !dataContainer.isAtEnd {
let nestedDecoder = try dataContainer.superDecoder()
let dataPoint = try DataPoint(from: nestedDecoder, units: units)
data.append(dataPoint)
}
self.data = data
/..
}
/..
}
add a comment |
This solves my issue by letting me 'walkthrough' each JSON array element and decode each separately:
struct DataBlock: Decodable {
/..
init(from decoder: Decoder, units: Units) throws {
/..
var data = [DataPoint]()
var dataContainer = try values.nestedUnkeyedContainer(forKey: .data)
while !dataContainer.isAtEnd {
let nestedDecoder = try dataContainer.superDecoder()
let dataPoint = try DataPoint(from: nestedDecoder, units: units)
data.append(dataPoint)
}
self.data = data
/..
}
/..
}
This solves my issue by letting me 'walkthrough' each JSON array element and decode each separately:
struct DataBlock: Decodable {
/..
init(from decoder: Decoder, units: Units) throws {
/..
var data = [DataPoint]()
var dataContainer = try values.nestedUnkeyedContainer(forKey: .data)
while !dataContainer.isAtEnd {
let nestedDecoder = try dataContainer.superDecoder()
let dataPoint = try DataPoint(from: nestedDecoder, units: units)
data.append(dataPoint)
}
self.data = data
/..
}
/..
}
answered Jan 3 at 21:55
JackFrostJackFrost
14
14
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54014809%2fhow-to-custom-decode-each-element-of-an-array-using-swift-decodable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you show the JSON you are trying to decode?
– Sweeper
Jan 3 at 0:13
Whoops, I just added the JSON section!
– JackFrost
Jan 3 at 1:05
And where is that error being thrown?
– Frakcool
Jan 3 at 1:30
Can you post the url you are using to fetch the JSON response? or a link to a file with the json data received?
– Leo Dabus
Jan 3 at 2:01
Clarified the line where the error is being thrown
– JackFrost
Jan 3 at 3:20