Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
lift-jsonを使用してJSONをケースクラスに抽出しようとしています。これが私のケースクラスです:
case class Person(name: String, age: Int)
これがjsonです
{ "name": "Some Name", "age": 24, type: "Student" }
typeフィールドをインスタンスに抽出するにはどうすればよいPersonですか?
type
Person
json.extract[Person]
バックティックを使用すると、予約済みの名前を使用できます。
case class Person(name:String, age:Int, `type`:String)