gpt4 book ai didi

json - Scala + Play Framework + Slick - Json 作为模型字段

转载 作者:行者123 更新时间:2023-12-01 23:12:06 26 4
gpt4 key购买 nike

我需要将 Json 字段保存为我的 Play 框架模型的一列。我在 DAO 中的表解析器是

    class Table(tag: Tag) extends Table[Model](tag, "tablename") {
implicit val configFormat = Json.format[Config]

// Fields ...
def config = column[Config]("config", O.SqlType("JSON"))
// Fields ...

}

Config 被定义为 Play Model 文件夹中 Model 中的案例类,并具有其伴生对象。该对象的字段为 Int、Double 或 String

    case class Config ( // fields )

object Config {
implicit val readConfig: Reads[Config] = new Reads[Config]
for {
// fields
} yield Config(// fields)

implicit val configFormat = Json.format[Config]

}

问题是由于这个错误我无法编译

    Error:(28, 37) could not find implicit value for parameter tt:         
slick.ast.TypedType[models.Config]
def config = column[Config]("config", O.SqlType("JSON"))

有没有办法将Config模型保存为Table中的Json(读取为Config)?

最佳答案

您需要告诉 Slick 如何将您的 Config 实例转换为数据库列:

implicit val configFormat = Json.format[Config]
implicit val configColumnType = MappedColumnType.base[Config, String](
config => Json.stringify(Json.toJson(config)),
column => Json.parse(column).as[Config]
)

关于json - Scala + Play Framework + Slick - Json 作为模型字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40819408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com