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 教程,它正在引用一个User对象。它没有说它来自哪里。我也无法在 API 中找到它。有谁知道我必须导入什么才能得到它?
User
这是模型中带有 FK 的示例代码User:
object owner extends MappedLongForeignKey(this, User)
User 对象将成为您的源的一部分。假设您已经完成了 com.liftworkshop 项目,它将位于 todo/src/main/scala/com/liftworkshop/model/User.scala 中,并且可以从“com.liftworkshop.model.User”导入。
默认的 User 类和对象是从 net.liftweb.mapper 中的 MetaProtoUser 和 MetaMegaProtoUser 特征构建的。