【Erlang新手成长日记】JSON编码与解码

开源项目:https://github.com/tonyg/erlang-rfc4627/

Git checkout之后,在src文件夹下找到文件“rfc4627.erl”。

JSON维基百科:http://en.wikipedia.org/wiki/JSON

RFC4627:http://tools.ietf.org/html/rfc4627

Joe Armstrong对JSON数据数据映射的描述:http://erlang.org/pipermail/erlang-questions/2005-November/017805.html

截取一段:

	JSON Obj    = type obj()   = {obj, [{key(), val()}]}
	JSON Array  = type array() = [val()]
	JSON Number = type num()   = int() | float() 
	JSON String = type str()   = bin()
	JSON true false null       = true, false null (atoms)

	With Type val() = obj() | array() | num() | str() | true | false | null

编译rfc4627.erl模块之后,试一试如何使用:

转载于:https://www.cnblogs.com/dyingbleed/archive/2012/09/09/2676031.html

猜你喜欢

转载自blog.csdn.net/weixin_33938733/article/details/93447176
今日推荐