开源项目: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模块之后,试一试如何使用:

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

相关文章:

  • 2022-02-09
  • 2021-05-17
  • 2022-02-08
  • 2022-02-08
  • 2021-10-31
  • 2022-02-08
  • 2021-09-17
  • 2022-12-23
猜你喜欢
  • 2022-02-21
  • 2021-07-20
  • 2021-06-21
  • 2021-08-06
  • 2021-06-01
  • 2021-07-28
  • 2021-06-22
相关资源
相似解决方案