Struts2-簡單Ajax應用__Ajax

來源:互聯網
上載者:User

應用情境:使用者註冊時在 文本輸入框中輸入使用者名稱,在使用者輸入完之後,判斷資料庫中是否存在該使用者名稱。在這個情景下,伺服器只要簡單的返回true或者false。

Java Action中書寫:

/* * 用於Ajax */private InputStream inputStream;public InputStream getInputStream() {    return inputStream;}private String name;public void setName(String name) {    this.name = name;}public String validateName() throws UnsupportedEncodingException {    boolean f = employeeService.isNameValidate(name);    System.out.println(f);    inputStream = new ByteArrayInputStream((f?"1":"0").getBytes("UTF-8"));    return "ajax-success";}

Struts2.xml檔案中配置:

<result type="stream" name="ajax-success">    <param name="contentType">text/html</param>    <param name="inputName">inputStream</param></result>

前端:

//發送AJAX請求var url = "emp-validateName.action";var args = {"name":val, "time":new Date()};$.post(url, args, function(data){    if(data=="1"){        $this.after("<font color='green'>名稱可用</font>");    }else if(data="0"){        $this.after("<font color='red'>名稱不可用</font>");    }else{        alert("伺服器異常");    }});
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.