我尝试使用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映射的声明。
答案 0 :(得分:0)
我在回答:我找到了解决方案:
首先,输入类(我没有显示):class="validate[required,ajax[Ajaxdoublonlogin]]"
然后,Ajax调用的url称为“Ajaxdoublonlogin”:"Doublonlogin"
,因为它在web.xml文件中声明。这是一个servlet。
servlet:
没什么难的! ^ _ ^
示例:“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
}
}
工作正常...... 如果您有任何建议,我会高兴的!
现在,我将尝试阻止表单提交,因为如果最后一个条件是这个条件,则提交附加;我不知道为什么......