In python I have a dictionary that maps tuples to a list of tuples. e.g.
{(1,2): [(2,3),(1,7)]}
I want to be able to encode this data use it with javascript, so I looked into json but it appears keys must be strings so my tuple does not work as a key.
Is the best way to handle this is encode it as "1,2" and then parse it into something I want on the javascript? Or is there a more clever way to handle this.
Best Solution
You might consider saying
and then when you need to get the value out, you can just parse the keys themselves as JSON objects, which all modern browsers can do with the built-in
JSON.parse
method (I'm usingjQuery.each
to iterate here but you could use anything):On the other hand, you might want to just structure your object differently, e.g.
so that instead of saying
which is invalid Javascript syntax, you could say