溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Java中利用Ajax實(shí)現(xiàn)一個(gè)用戶名重復(fù)檢驗(yàn)功能

發(fā)布時(shí)間:2021-01-13 15:03:08 來(lái)源:億速云 閱讀:277 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)怎么在Java中利用Ajax實(shí)現(xiàn)一個(gè)用戶名重復(fù)檢驗(yàn)功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

實(shí)體類代碼:

/**
 *
 */
package com.hqj.dao;
/**
 * @author HuangQinJian 下午9:12:19 2017年4月23日
 */
public class User {
  private int id;
  private String name;
  private String password;
  /**
   *
   */
  public User() {
    super();
    // TODO Auto-generated constructor stub
  }
  /**
   * @param id
   * @param name
   * @param password
   */
  public User(int id, String name, String password) {
    super();
    this.id = id;
    this.name = name;
    this.password = password;
  }
  public int getId() {
    return id;
  }
  public void setId(int id) {
    this.id = id;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public String getPassword() {
    return password;
  }
  public void setPassword(String password) {
    this.password = password;
  }
  @Override
  public String toString() {
    return "User [name=" + name + ", password=" + password + "]";
  }
}

數(shù)據(jù)庫(kù)操作類代碼:

/**
 *
 */
package com.hqj.db;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
 * @author HuangQinJian 上午9:21:23 2017年4月24日
 */
public class DBConnection {
  public static Connection getConn() {
    Connection conn = null;
    try {
      Class.forName("com.mysql.jdbc.Driver");
      conn = DriverManager
          .getConnection("jdbc:mysql://localhost/system?user=root&password=729821");
    } catch (ClassNotFoundException e) {
      e.printStackTrace();
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return conn;
  }
  public static PreparedStatement prepare(Connection conn, String sql) {
    PreparedStatement pstmt = null;
    try {
      if (conn != null) {
        pstmt = conn.prepareStatement(sql);
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return pstmt;
  }
  public static PreparedStatement prepare(Connection conn, String sql,
      int autoGenereatedKeys) {
    PreparedStatement pstmt = null;
    try {
      if (conn != null) {
        pstmt = conn.prepareStatement(sql, autoGenereatedKeys);
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return pstmt;
  }
  public static Statement getStatement(Connection conn) {
    Statement stmt = null;
    try {
      if (conn != null) {
        stmt = conn.createStatement();
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return stmt;
  }
  public static ResultSet getResultSet(Statement stmt, String sql) {
    ResultSet rs = null;
    try {
      if (stmt != null) {
        rs = stmt.executeQuery(sql);
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return rs;
  }
  public static void executeUpdate(Statement stmt, String sql) {
    try {
      if (stmt != null) {
        stmt.executeUpdate(sql);
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }
  public static void close(Connection conn) {
    try {
      if (conn != null) {
        conn.close();
        conn = null;
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }
  public static void close(Statement stmt) {
    try {
      if (stmt != null) {
        stmt.close();
        stmt = null;
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }
  public static void close(ResultSet rs) {
    try {
      if (rs != null) {
        rs.close();
        rs = null;
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
  }
}

上面的數(shù)據(jù)庫(kù)操作代碼相當(dāng)于一個(gè)工具類,大家可以直接使用,不過(guò)要記得改數(shù)據(jù)庫(kù)賬號(hào),密碼以及數(shù)據(jù)庫(kù)表名:

conn = DriverManager
    .getConnection("jdbc:mysql://localhost/system?user=root&password=729821");

service類代碼:

/**
 *
 */
package com.hqj.service;
import java.util.List;
import com.hqj.dao.User;
/**
 * @author HuangQinJian 上午9:26:26 2017年4月24日
 */
public interface UserService {
  public String checkUserName(String username);
}

serviceImpl類代碼:

/**
 *
 */
package com.hqj.serviceImpl;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import com.hqj.dao.User;
import com.hqj.db.DBConnection;
import com.hqj.service.UserService;
/**
 * @author HuangQinJian 上午9:29:14 2017年4月24日
 */
public class UserServiceImpl implements UserService {
  private Connection conn = null;
  private Statement stmt = null;
  private PreparedStatement pstmt = null;
  DBConnection dbConnection = new DBConnection();
  @Override
  public String checkUserName(String username) {
    conn = DBConnection.getConn();
    stmt = DBConnection.getStatement(conn);
    String sql = "select * from user where name=" + "'" + username + "'";
    System.out.println("用戶查詢時(shí)的SQL:" + sql);
    String str = null;
    try {
      pstmt = conn.prepareStatement(sql);
      if (pstmt.executeQuery().next() == true) {
        str = "用戶名已存在!";
      } else {
        str = "用戶名可用!";
      }
    } catch (SQLException e) {
      e.printStackTrace();
    }
    return str;
  }
}

后臺(tái)代碼:

<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<%@ page import="com.hqj.serviceImpl.UserServiceImpl"%>
<%
  String username = request.getParameter("username");
  UserServiceImpl u = new UserServiceImpl();
  out.println(u.checkUserName(username));
%>

前端代碼:

利用原生Ajax實(shí)現(xiàn)

<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<%@ page import="com.hqj.dao.User"%>
<%@ page import="com.hqj.serviceImpl.UserServiceImpl"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
  <form action="regeist.jsp" method="post">
    用戶名: <input type="text" value="" name="name" id="username"
      onblur='checkUserName()'>
    <br> 密碼: <input type="text" value="" name="password"><br>
    <input type="submit" value="提交">
  </form>
  <jsp:useBean id="user" scope="session" class="com.hqj.dao.User"></jsp:useBean>
  <jsp:setProperty property="name" name="user" />
  <jsp:setProperty property="password" name="user" />
  <%
    if (request.getMethod() == "POST") {
      User u = new User();
      u.setName(user.getName());
      out.println(user.getName());
      u.setPassword(user.getPassword());
      UserServiceImpl userServiceImpl = new UserServiceImpl();
      if (!userServiceImpl.checkUserName(user.getName()).equals(
          "用戶名已存在!")) {
        userServiceImpl.add(u);
        out.println("用戶注冊(cè)成功!");
      }
    }
  %>
  <h4><%=user.getName()%></h4>
  <h4><%=user.getPassword()%></h4>
</body>
<script type="text/javascript">
  var xmlhttp;
  var flag;
  function createXMLHttp() {
    if (window.ActiveXObject) {
      //ie
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    } else {
      //firefox
      xmlhttp = new XMLHttpRequest();
    }
  }
  function checkUserName() {
    createXMLHttp();
    var username = document.getElementById("username").value;
    // alert(username);
    if (username == "") {
      document.getElementById("username").innerHTML = "用戶名不能為空";
    }
    xmlhttp.open("POST", "checkUserName.jsp", true);
    xmlhttp.setRequestHeader("Content-type",
        "application/x-www-form-urlencoded");
    xmlhttp.send("username=" + username);
    xmlhttp.onreadystatechange = function() {
      //   alert(xmlhttp.readyState);
      //   alert(xmlhttp.status);
      if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        console.log(xmlhttp.responseText);
        document.getElementById("text").innerHTML = xmlhttp.responseText;
      }
    }
  }
</script>
</html>

在這里有幾個(gè)點(diǎn)需要注意:

1、要注意創(chuàng)建xmlhttp語(yǔ)句的正確性!

2、xmlhttp.send(“username=” + username);是發(fā)送給后臺(tái)的(服務(wù)器)的數(shù)據(jù)!因?yàn)楹笈_(tái)需要前端傳送的數(shù)據(jù)進(jìn)行判斷!

3、注意區(qū)分xmlhttp.responseText與responseXML的區(qū)別!

responseText獲得字符串形式的響應(yīng)數(shù)據(jù)。
responseXML獲得 XML 形式的響應(yīng)數(shù)據(jù)。

如果來(lái)自服務(wù)器的響應(yīng)并非 XML,請(qǐng)使用 responseText 屬性;如果來(lái)自服務(wù)器的響應(yīng)是 XML,而且需要作為 XML 對(duì)象進(jìn)行解析,請(qǐng)使用 responseXML 屬性。

因?yàn)樵谖业拇a中后臺(tái)返回的是String類型,所以必須用responseText。我剛開(kāi)始時(shí)就是因?yàn)檫@個(gè)出錯(cuò)了!

來(lái)一個(gè) responseXML 的例子:

xmlDoc=xmlhttp.responseXML;
txt="";
x=xmlDoc.getElementsByTagName("ARTIST");
for (i=0;i<x.length;i++)
{
  txt=txt + x[i].childNodes[0].nodeValue + "<br>";
}
document.getElementById("myDiv").innerHTML=txt;
屬性描述
onreadystatechange存儲(chǔ)函數(shù)(或函數(shù)名),每當(dāng) readyState 屬性改變時(shí),就會(huì)調(diào)用該函數(shù)。
readyState存有 XMLHttpRequest 的狀態(tài)。從 0 到 4 發(fā)生變化。
 0: 請(qǐng)求未初始化
 1: 服務(wù)器連接已建立
 2: 請(qǐng)求已接收
 3: 請(qǐng)求處理中
 4: 請(qǐng)求已完成,且響應(yīng)已就緒

**在 onreadystatechange 事件中,我們規(guī)定當(dāng)服務(wù)器響應(yīng)已做好被處理的準(zhǔn)備時(shí)所執(zhí)行的任務(wù)。

當(dāng) readyState 等于 4 且狀態(tài)為 200 時(shí),表示響應(yīng)已就緒。**

<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>
<%@ page import="com.hqj.dao.User"%>
<%@ page import="com.hqj.serviceImpl.UserServiceImpl"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
  <form action="regeist.jsp" method="post">
    用戶名: <input type="text" value="" name="name" id="username">
    <div id="text"></div>
    <br> 密碼: <input type="text" value="" name="password"><br>
    <input type="submit" value="提交">
  </form>
  <jsp:useBean id="user" scope="session" class="com.hqj.dao.User"></jsp:useBean>
  <jsp:setProperty property="name" name="user" />
  <jsp:setProperty property="password" name="user" />
  <%
    if (request.getMethod() == "POST") {
      User u = new User();
      u.setName(user.getName());
      out.println(user.getName());
      u.setPassword(user.getPassword());
      UserServiceImpl userServiceImpl = new UserServiceImpl();
      if (!userServiceImpl.checkUserName(user.getName()).equals(
          "用戶名已存在!")) {
        userServiceImpl.add(u);
        out.println("用戶注冊(cè)成功!");
      }
    }
  %>
  <h4><%=user.getName()%></h4>
  <h4><%=user.getPassword()%></h4>
</body>
<script type="text/javascript" src="js/jquery-2.2.3.js"></script>
<script type="text/javascript">
  /* $(document).ready(function() {
  alert("hello world!");
  }); */
  var username;
  $("#username").blur(function() {
    username = $('#username').val();
    //console.log(username);
    $.ajax({
      url : "checkUserName.jsp",
      type : "POST",
      dataType : "text",
      data : {
        "username" : username
      },
      success : function(data) {
        //$("#text").innerHTML = data;
        //console.log(data)
        $("#text").text(data);
      }
    })
  })
</script>
</html>

使用JQuery實(shí)現(xiàn)的時(shí)候,要注意$.ajax中的參數(shù):

url: 要求為String類型的參數(shù),(默認(rèn)為當(dāng)前頁(yè)地址)發(fā)送請(qǐng)求的地址。

type: 要求為String類型的參數(shù),請(qǐng)求方式(post或get)默認(rèn)為get。注意其他http請(qǐng)求方法,例如put和delete也可以使用,但僅部分瀏覽器支持。

timeout: 要求為Number類型的參數(shù),設(shè)置請(qǐng)求超時(shí)時(shí)間(毫秒)。此設(shè)置將覆蓋$.ajaxSetup()方法的全局設(shè)置。

async:要求為Boolean類型的參數(shù),默認(rèn)設(shè)置為true,所有請(qǐng)求均為異步請(qǐng)求。 如果需要發(fā)送同步請(qǐng)求,請(qǐng)將此選項(xiàng)設(shè)置為false。注意,同步請(qǐng)求將鎖住瀏覽器,用戶其他操作必須等 待請(qǐng)求完成才可以執(zhí)行。

cache:要求為Boolean類型的參數(shù),默認(rèn)為true(當(dāng)dataType為script時(shí),默認(rèn)為false)。設(shè)置為false將不會(huì)從瀏覽器緩存中加載請(qǐng)求信息。

data: 要求為Object或String類型的參數(shù),發(fā)送到服務(wù)器的數(shù)據(jù)。如果已經(jīng)不是字符串,將自動(dòng)轉(zhuǎn)換為字符串格式。get請(qǐng)求中將附加在url后。防止這種自動(dòng)轉(zhuǎn)換,可以查看processData選項(xiàng)。對(duì)象必須為key/value格式,例如{foo1:”bar1”,foo2:”bar2”}轉(zhuǎn)換為&foo1=bar1&foo2=bar2。如果是數(shù)組,JQuery將自動(dòng)為不同值對(duì)應(yīng)同一個(gè)名稱。例如{foo:[“bar1”,”bar2”]}轉(zhuǎn)換為&foo=bar1&foo=bar2。

dataType: 要求為String類型的參數(shù),預(yù)期服務(wù)器返回的數(shù)據(jù)類型。如果不指定,JQuery將自動(dòng)根據(jù)http包mime信息返回responseXML或responseText,并作為回調(diào)函數(shù)參數(shù)傳遞。

可用的類型如下:

  • xml:返回XML文檔,可用JQuery處理。

  • html:返回純文本HTML信息;包含的script標(biāo)簽會(huì)在插入DOM時(shí)執(zhí)行。

  • script:返回純文本JavaScript代碼。不會(huì)自動(dòng)緩存結(jié)果。除非設(shè)置了cache參數(shù)。注意在遠(yuǎn)程請(qǐng)求時(shí)(不在同一個(gè)域下),所有post請(qǐng)求都將轉(zhuǎn)為get請(qǐng)求。

  • json:返回JSON數(shù)據(jù)。

  • jsonp:JSONP格式。使用SONP形式調(diào)用函數(shù)時(shí),例如myurl?callback=?,JQuery將自動(dòng)替換后一個(gè) “?”為正確的函數(shù)名,以執(zhí)行回調(diào)函數(shù)。

  • text:返回純文本字符串。

  • beforeSend:要求為Function類型的參數(shù),發(fā)送請(qǐng)求前可以修改XMLHttpRequest對(duì)象的函數(shù),例如添加自定義HTTP頭。在beforeSend中如果返回false可以取消本次ajax請(qǐng)求。XMLHttpRequest對(duì)象是惟一的參數(shù)。

function(XMLHttpRequest){
  this;  //調(diào)用本次ajax請(qǐng)求時(shí)傳遞的options參數(shù)
}
  • complete:要求為Function類型的參數(shù),請(qǐng)求完成后調(diào)用的回調(diào)函數(shù)(請(qǐng)求成功或失敗時(shí)均調(diào)用)。

參數(shù):XMLHttpRequest對(duì)象和一個(gè)描述成功請(qǐng)求類型的字符串。

function(XMLHttpRequest, textStatus){
  this;  //調(diào)用本次ajax請(qǐng)求時(shí)傳遞的options參數(shù)
}
  • success:要求為Function類型的參數(shù),請(qǐng)求成功后調(diào)用的回調(diào)函數(shù),有兩個(gè)參數(shù)。

(1)由服務(wù)器返回,并根據(jù)dataType參數(shù)進(jìn)行處理后的數(shù)據(jù)。
(2)描述狀態(tài)的字符串。

function(data, textStatus){
//data可能是xmlDoc、jsonObj、html、text等等
  • error:要求為Function類型的參數(shù),請(qǐng)求失敗時(shí)被調(diào)用的函數(shù)。該函數(shù)有3個(gè)參數(shù),即XMLHttpRequest對(duì)象、錯(cuò)誤信息、捕獲的錯(cuò)誤對(duì)象(可選)。

ajax事件函數(shù)如下:

function(XMLHttpRequest, textStatus, errorThrown){
 //通常情況下textStatus和errorThrown只有其中一個(gè)包含信息
 this; //調(diào)用本次ajax請(qǐng)求時(shí)傳遞的options參數(shù)
}
  • contentType:要求為String類型的參數(shù),當(dāng)發(fā)送信息至服務(wù)器時(shí),內(nèi)容編碼類型默認(rèn)為”application/x-www-form-urlencoded”。該默認(rèn)值適合大多數(shù)應(yīng)用場(chǎng)合。

示例代碼:

$(function(){
 $('#send').click(function(){
  $.ajax({
  type: "GET",
  url: "test.json",
  data: {username:$("#username").val(), content:$("#content").val()},
  dataType: "json",
  success: function(data){
    $('#resText').empty(); //清空resText里面的所有內(nèi)容
    var html = '';
    $.each(data, function(commentIndex, comment){
    html += ;//自由發(fā)揮

上述就是小編為大家分享的怎么在Java中利用Ajax實(shí)現(xiàn)一個(gè)用戶名重復(fù)檢驗(yàn)功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI