jquery验证引擎:使用java进行ajax字段验证(不是用php)

时间:2012-02-12 20:56:22

标签: jquery servlets jquery-validation-engine

我尝试使用ajax和一个函数来验证字段,该函数验证该值是否已经在基础中。

我发现的所有例子都是用php;如何处理java?

JSP代码:

<form id="FLoginNew" action="Loginnew" method="post">
.....
<script>
$(document).ready(function(e) {
    $("#FLoginNew").validationEngine('attach', {promptPosition : "centerRight", scroll: false, validationEventTrigger: "blur", autoHidePrompt:true, autoHideDelay:3000 });
});
</script>

jquery.ValidationEngine-fr.js改变了:

"ajaxLoginCall": {
                "url": "myapp.selvlets.DoublonLoginServlet",
                "extraDataDynamic": ['#login'],
                "alertText": "* Ce login est déjà pris",
                "alertTextOk": "* Ce login est disponible",
                "alertTextLoad": "* Chargement, veuillez attendre"
            },

作为URL,我尝试了:"url": "/DoublonLogin",这是web.xml中servlet映射的声明。

1 个答案:

答案 0 :(得分:0)

我在回答:我找到了解决方案:

首先,输入类(我没有显示):class="validate[required,ajax[Ajaxdoublonlogin]]"

然后,Ajax调用的url称为“Ajaxdoublonlogin”:"Doublonlogin",因为它在web.xml文件中声明。这是一个servlet。

servlet:

  • 必须导入JSON图书馆。我选择了“JSONSimple”:简单而且 足够我想做的事。
  • 创建一个JSON数组,然后输入输入字段的名称,然后输入true或false 经过核实后。
  • 在响应对象中创建一个writer并编写JSON数组。

没什么难的! ^ _ ^

示例:“login”是输入字段的ID

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    String login = new String(request.getParameter("login")); // we catch the value

    JSONArray jsres = new JSONArray(); // new JSON array

    jsres.add("login"); // 1st field : the field name = "login"

    if(<login in the database ?>) jsres.add(new Boolean(false)); // In database ? => false in the JSON array
    else jsres.add(new Boolean(true)); // Not in database > true in the JSON array !! 

    response.setContentType("application/json"); // The answer is in JSON content type
    response.setCharacterEncoding("UTF-8"); // Put the right encoding
    PrintWriter writer = response.getWriter();  // new answer writer

    try {
        writer.println(jsres); // WRITE !! ^_^
        log.info("Retour JSON : " + jsres);
        } catch(Exception e){
        log.error("Erreur lors du transfert JSON : " + e.getMessage());
    } finally {
        writer.close(); // Don't forget to close the writer
    }
}

工作正常...... 如果您有任何建议,我会高兴的!

现在,我将尝试阻止表单提交,因为如果最后一个条件是这个条件,则提交附加;我不知道为什么......