在@helper.form 中不指定任何操作参数
Specify no action parameter in @helper.form
嗨,我刚刚开始学习 Play Framework 2。
是否可以在scala模板中的@helper.form
参数中不指定任何动作。
类似于:
@helper.form()
而不是
@helper.form(action=@routes.Apllication.create)
我想在用户按表单中的输入键时进行 Ajax 调用,而不是调用操作。
@helper.form(action){...}
仅生成 HTML 的 <form>
标签,其中包含基于定义的路由的适当 action
和 method
属性。
这意味着,您可以自己编写代码而不是使用帮助程序。
<form id="myAjaxDrivenForm">
<input type="text" name="foo" />
</form>
嗨,我刚刚开始学习 Play Framework 2。
是否可以在scala模板中的@helper.form
参数中不指定任何动作。
类似于:
@helper.form()
而不是
@helper.form(action=@routes.Apllication.create)
我想在用户按表单中的输入键时进行 Ajax 调用,而不是调用操作。
@helper.form(action){...}
仅生成 HTML 的 <form>
标签,其中包含基于定义的路由的适当 action
和 method
属性。
这意味着,您可以自己编写代码而不是使用帮助程序。
<form id="myAjaxDrivenForm">
<input type="text" name="foo" />
</form>