-1

我正在通过一些示例程序来学习 grails。
我想知道如何使用 grails 验证用户定义的表单。
我的代码是:

领域类

class User
{
    String property

    static constraints = 
    {
        property(blank:false,nullable:false)
    }
}

控制器类

def addUser() {

}

def userPrint() {
      def values = request.getParameterValues("property")
      for(val in values){
         println "values received :"+val
      }
}

添加用户.gsp

<html>
<head>
<title>Users</title>
</head>
<body>
<g:form name="useraddform" url="[controller:'user',action:'userPrint']">
<table>
<tr>
<td>Username :</td>
<td><g:textField name="property" value=""/></td>
</tr>
<tr>
<td>Password : </td>
<td><g:textField name="property" value=""/></td>
</tr>
</table>
<input type="submit" value="ADD"/>
</g:form>
</body>
</html>

我需要验证输入的用户名和密码。
怎么实现这个???
请帮忙....!

4

1 回答 1

0

请阅读约束手册部分和整个Web 层章节。

此外,grails generate-all在其他一些示例项目上运行并查看脚手架 GSP 内容,尤其是hasErrors标记/函数。

于 2012-08-11T21:07:39.633 回答