0

我在 Grails 中寻找按钮 if/else 的控制器代码。

当用户选择时,我有单选按钮的代码:

<g:radio name="myGroup" value ="input2" />


if (request.getParameter("myGroup").equals("input1"))
        {

        println("asdasdasdasdasdhelloipass")
        redirect (action: radio)

        }

这就是它的工作原理,但是对于按钮,当用户单击按钮时它的 if 条件是什么。提前致谢。

 <g:actionSubmit value="Submit" action="abc"/>
4

1 回答 1

0

你想做什么?“actionSubmit”标签会将表单参数提交给名为“abc”的动作。

class SomeController {

    def index() { }

def abc() {
        log.debug("called abc")
    }
}

一些/index.gsp

<html>
    <head>
    </head>
    <body>
        <g:form>
            <g:actionSubmit value="blah" action="abc"/>
        </g:form>
    </body>
</html>
于 2013-03-23T03:25:01.063 回答