标签: spray-json
我想反序列化一个Json字符串,它是根节点处的序列。例如,
[{"name":"Bob", "age":26}, {"name":"Ted", "age":24}]
我如何使用spray-json来做到这一点?
答案 0 :(得分:0)
我让我的unmarshaller将字符串解组为Seq,如 -
unmarshal[Seq[Person]]
并且有效。