Lift 中的表单与 JPA 模型
每个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尖锐的答案是你编写代码。不那么尖锐的答案是,查看代码并按照它作为示例。
没有内置(提升)方法将类转换为表单。您必须自己编写代码,使用 scala 处理 html 的本机功能。
像这样的事情:
您可以使用片段或您选择的 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:
You can either then process the form using snippets, or the Lift method of your choice.