如何在 Scala 的 Web 框架 Lift 中导入 User 对象?

发布于 2024-08-05 09:13:14 字数 324 浏览 4 评论 0原文

我正在关注 Lift 教程,它引用了 User< /代码> 对象。它没有说它来自哪里。我在 API 中也找不到它。有谁知道我必须导入什么才能获得它?

以下是模型中带有 FK 到 User 的示例代码:

object owner extends MappedLongForeignKey(this, User) 

I'm following the Lift tutorial and it is referencing to a User object. It doesn't say where it's coming from. I also could not find it in the API. Does anyone know what I have to import to get it?

Here's the sample code with a FK to User in the model:

object owner extends MappedLongForeignKey(this, User) 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早茶月光 2024-08-12 09:13:14

User 对象将成为源的一部分。假设您已经完成了 com.liftworkshop 项目,它将位于 todo/src/main/scala/com/liftworkshop/model/User.scala 中,并且可以从“com.liftworkshop.model.User”导入。

默认的 User 类和对象是根据 net.liftweb.mapper 中的 MetaProtoUser 和 MetaMegaProtoUser 特征构建的。

The User object will be part of your source. Assuming that you've done the com.liftworkshop project, it will be in todo/src/main/scala/com/liftworkshop/model/User.scala and can be imported from "com.liftworkshop.model.User".

The default User class and object are built from the MetaProtoUser and MetaMegaProtoUser traits in net.liftweb.mapper.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文