gpt4 book ai didi

grails - 如何在Grails中定义uploadForm和2个不同的 Action ?

转载 作者:行者123 更新时间:2023-12-02 15:39:54 25 4
gpt4 key购买 nike

我有一个gsp View ,带有和2个输入文本。
我有一个保存和提交的按钮。

现在,我想添加另一个具有新操作的按钮,以我为例,该按钮用于计划保存。

注意:在我的 Controller 中,我定义了:def保存(对应于按钮 Action 保存)和def时间表(对应于按钮 Action 时间表)。

在此gsp View 中添加Schedule的最佳方法是什么:

<g:uploadForm action="save" method="post" >
<div class="dialog">
<table>
<tbody>

<tr class="prop">
<td valign="top" class="name">
<label for="payload">File:</label>
</td>
<td valign="top">
<input type="file" id="payload" name="payload"/>
</td>
<td valign="top">
<input type="file" id="payload2" name="payload2"/>
</td>
</tr>

<tr class="prop">
<td valign="top" class="name">
<label for="lvalue">Lvalue:</label>
</td>
<td valign="top" class="value ${hasErrors(bean:rmmInstance,field:'lvalue','errors')}">
<input type="text" id="lvalue" name="lvalue" value="${fieldValue(bean:rmmInstance,field:'lvalue')}" />
</td>
</tr>

<tr class="prop">
<td valign="top" class="name">
<label for="wvalue">Wvalue:</label>
</td>
<td valign="top" class="value ${hasErrors(bean:rmmInstance,field:'wvalue','errors')}">
<input type="text" id="wvalue" name="wvalue" value="${fieldValue(bean:rmmInstance,field:'wvalue')}" />
</td>
</tr>

</tbody>
</table>
</div>
<div class="buttons">
<span class="button"><input class="save" type="submit" value="Run Now" /></span>
</div>
</g:uploadForm>

我只有一种形式,但是有两种不同的 Action 。

谢谢 !

最佳答案

带有actionSubmit:

Purpose

Creates a submit button that maps to a specific action, which allows you to have multiple submit buttons in a single form. Javascript event handlers can be added using the same parameter names as in HTML.



来自 Grails reference docs

关于grails - 如何在Grails中定义uploadForm和2个不同的 Action ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2029828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com