0

我尝试使用 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 映射的声明。

4

1 回答 1

0

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

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

然后,Ajax 调用的 url 称为 "Ajaxdoublonlogin" :"Doublonlogin"因为它在 web.xml 文件中声明。这是一个小服务程序。

小服务程序:

  • 它必须导入一个 JSON 库。我选择了“JSONSimple”:简单且足够我想做的事情。
  • 创建一个 JSON 数组,然后输入字段的名称,然后在验证后输入 true 或 false。
  • 在响应对象中创建写入器并写入 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
    }
}

它工作正常...如果您有建议,我会很高兴接受!

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

于 2012-02-16T07:39:09.783 回答