我想使用 Scala 解析以下 JSON 对象:
val result = """{"24h_volume_usd": "9097260000.0"}"""
通常我使用:
import net.liftweb.json._
case class VolumeUSDClass(24h_volume_usd:String) //<- problem 24h_volume_usd does not work
val element = parse(result)
element.extract[CryptoDataClass]
问题是我无法使用以数字开头的参数定义案例类。规避这种情况的最佳方法是什么?