Lift-json 使用“type”提取 json字段到案例类中
我正在尝试使用 lift-json 将 JSON 提取到案例类中。这是我的案例类:
case class Person(name: String, age: Int)
这是 json
{ "name": "Some Name", "age": 24, type: "Student" }
如何将 type
字段提取到实例 Person
中?
json.extract[Person]
I am trying to extract JSON into a case class using lift-json. Here is my case class:
case class Person(name: String, age: Int)
Here is the json
{ "name": "Some Name", "age": 24, type: "Student" }
How can I extract the type
field into an instance Person
?
json.extract[Person]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
反引号允许您使用保留名称。
Backticks allow you to use reserved names.