喷Json反序列化根序列

时间:2015-02-17 04:57:38

标签: spray-json

我想反序列化一个Json字符串,它是根节点处的序列。例如,

[{"name":"Bob", "age":26}, {"name":"Ted", "age":24}]

我如何使用spray-json来做到这一点?

1 个答案:

答案 0 :(得分:0)

我让我的unmarshaller将字符串解组为Seq,如 -

unmarshal[Seq[Person]]

并且有效。