Open GoogleCodeExporter opened 9 years ago
Hi!
Well, it's a good way to contact me here, why not? :)
The problem you are describing isn't easy to solve without additional
XSD/knowledge and I can't promise anything right now. I'll think about any
workaround/solution.
Thanks!
Original comment by abdulla....@gmail.com
on 11 Dec 2013 at 5:37
Nice library unfortuantly the element order is quite a big one for me as well.
One idea I have for fixing this is to simply put a wrapper on elements that
contains their tag name. Currently given this xml input
<root>
<tag1 hello="world" />
<tag2 />
<tag1 />
</root>
you get this json
{
"root":{
"tag1":[
{
"_hello":"world"
},
""
],
"tag2":""
}
}
As you can see no order. Now imagine if the json returned was this
[
{
"namespace": "",
"localName": "root"
"children": [
{
"namespace": "",
"localName": "tag1",
"children": [],
"attributes": {
"hello": "world"
}
},
{
"namespace": "",
"localName": "tag2",
"children": [],
"attributes": {}
},
{
"namespace": "",
"localName": "tag1",
"children": [],
"attributes": {}
},
]
}
]
This output is much more verbose but it has its benefits, for 1 order is
preserved and additional information can be added without conflicting with
attribute names. Because this changes the whole structure of the response a
change like this would have to a v2 change.
Original comment by ned.stua...@gmail.com
on 23 Jun 2014 at 10:30
Original issue reported on code.google.com by
martin.p...@gmail.com
on 11 Dec 2013 at 1:51