The mochijson2 tag has no wiki summary.
6
votes
1answer
673 views
Erlang : Tuple List into JSON
I have a list of tuples which are http headers. I want to convert the list to a JSON object. I try mochijson2 but to no avail.
So I have the following :
...
2
votes
2answers
1k views
Decode JSON with mochijson2 in Erlang
I have a var that has some JSON data:
A = <<"{\"job\": {\"id\": \"1\"}}">>.
Using mochijson2, I decode the data:
Struct = mochijson2:decode(A).
And now I have this:
...
1
vote
1answer
116 views
Erlang Design Advice regarding HTTP services
I'm new to Erlang but I would like to get started with an application which feels applicable to the technology due to the concurrency desires I have.
This picture highlights what i want to do.
...
0
votes
3answers
212 views
How to pattern match structures returned by mochijson2?
I've just started tinkering with Erlang and am building a very simple test web application which is just intended to show my twitter timeline.
I'm using webmachine to write the app and erlyDTL to ...
0
votes
1answer
259 views
Erlang : JSON List to JSON List
I have a list of JSON objects (received from a nosql db) and want to remove or rename some keys. And then I want to return data as a list of JSON objects once again.
This Stackoverflow post provides ...