Lift 中的表单与 JPA 模型

发布于 2024-09-28 00:42:40 字数 73 浏览 3 评论 0原文

每个Mapper字段中都有.toForm。如何在 JPA 模型中执行此操作(从模型创建表单)?

提前致谢, 埃塔姆。

there is .toForm in every Mapper field. How do you do this (create forms from models) in JPA models?

Thanks in advance,
Etam.

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

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

发布评论

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

评论(1

陪你到最终 2024-10-05 00:42:40

尖锐的答案是你编写代码。不那么尖锐的答案是,查看代码并按照它作为示例。
没有内置(提升)方法将类转换为表单。您必须自己编写代码,使用 scala 处理 html 的本机功能。
像这样的事情:

def toForm = <form><label>Field 1</label><input>{field1}</form>

您可以使用片段或您选择的 Lift 方法处理表单。

The snarky answer is you write the code. The less snarky answer is, look at the code and follow that as an example.
There is no built in (to lift) way to convert a class to a form. You'll have to write the code yourself, using scala's native ability to handle html.
Something like this:

def toForm = <form><label>Field 1</label><input>{field1}</form>

You can either then process the form using snippets, or the Lift method of your choice.

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