下拉式功能表的級聯操作(ajax)_AJAX相關

來源:互聯網
上載者:User

在開發中常常會遇到菜單的級聯操作,比如:國家、城市、鄉鎮的選擇等。當選中某個國家的時候,後面的菜單會把該國家內的城市羅列出來,當選中城市的時候,後面的菜單會把對應的鄉鎮列出來。 

解決這種菜單的級聯操作的辦法,我理解的有兩種:

①使用js來實現,把頁面所用到的級聯資料放到js內,當頁面載入完成後,通過js顯示到對應的select內,這種方法的解決辦法有很多種,最為直觀的一種是放到多維陣列中,每個人的思維不一樣,這裡就不詳細解說。

②使用ajax非同步動態載入,然後顯示到對應的select內,這種方法很便捷,建議在開發中使用。

下面看一個開發中的小例子: 

JSP簡短頁面: 

      <div class="form-group">        <label class="col-sm-2 control-label">裝置類別</label>        <div class="col-sm-4">          <select class="basic-single" name="codeCategory" onchange="showCodeSubCate()" id="codeCategory" style="width: 100%">                    </select>        </div>        <label class="col-sm-2 control-label">裝置子類</label>        <div class="col-sm-4">          <select class="basic-single" name="codeSubCategory" id="codeSubCate" disabled="disabled" style="width: 100%">            <option value="">--請選擇--</option>          </select>        </div>
</div>

該頁面內涉及到了兩個select,分別為:裝置分類和裝置子類,其中裝置分類為一級菜單,裝置子類為二級菜單,裝置子類的顯示內容由裝置分類決定。 

下面來看ajax程式碼片段: 

function addCodeCategory(){    $.ajax({      url: "<%=request.getContextPath()%>/facilitydict/showCodeCategory",      async: false, //請求是否非同步,預設為非同步,這也是ajax重要特性      type: "GET",  //請求方式      success: function(result) {        result = $.parseJSON(result);        var data = result.data;        var codeCates = data.split(",");        str ='<option value="6801">--請選擇--</option>';        for(x in codeCates){          str+='<option value="'+codeCates[x]+'">'+codeCates[x]+'</option>';        }        $("#codeCategory").html(str);              }    });  }    function showCodeSubCate(){    $("#codeSubCate").prop("disabled","");//將裝置子類的select解除鎖定    var target = $("#codeCategory option:selected").text();    $.ajax({      url: "<%=request.getContextPath()%>/facilitydict/showCodeSubCategory",      data : {codeCategory:target},      async: false, //請求是否非同步,預設為非同步,這也是ajax重要特性      type: "GET",  //請求方式      success: function(result) {        result = $.parseJSON(result);        var data = result.data;        var codeCates = data.split(",");        var str="";        for(x in codeCates){          str+='<option value="'+codeCates[x]+'">'+codeCates[x]+'</option>';        }        $("#codeSubCate").html(str);      }    });  }

不難看出,當裝置分類別選取器內的內容發生改變後,觸發showCodeSubCate函數來請求後台擷取資料,然後把請求到的資料添加到裝置子類對應的select內。後台代碼的實現如下(只貼出controller的方法):

@RequestMapping("/showCodeCategory")  @ResponseBody  public Result<String> searchCodeCategory() {    Result<String> rs = new Result<>();    List<String> codeCategorys = facilityDictService.searchCodeCategory();    String codeCate = StringUtil.collectionToCommaDelimitedString(codeCategorys);    rs.setData(codeCate);    return rs;  }  @RequestMapping("/showCodeSubCategory")  @ResponseBody  public Result<String> searchCodeSubCategory(HttpServletRequest request) {    String codeCategory = request.getParameter("codeCategory");    Result<String> rs = new Result<>();    List<String> codeSubCategorys = facilityDictService.searchCodeSubCategory(codeCategory);    String codeCate = StringUtil.collectionToCommaDelimitedString(codeSubCategorys);    rs.setData(codeCate);    return rs;  }

這兩個方法分別對應上面的兩個ajax請求,值得介紹的是後台返回的資料,傳回值類型為Result<String>,該傳回值類型是一個工具類,具體實現可以在我的部落格中查看,連結為:http://www.cnblogs.com/blog411032/p/5799669.html

ajax與後台互動傳輸資料的工具類

 public class Result<T> implements Serializable {  private static final long serialVersionUID = 3637122497350396679L;  private boolean success;  private T data;  private String msg;  public Result() {  }  public Result(boolean success) {    this.success = success;  }  public boolean isSuccess() {    return success;  }  public void setSuccess(boolean success) {    this.success = success;  }  public T getData() {    return data;  }  public void setData(T data) {    this.data = data;  }  public String getMsg() {    return msg;  }  public void setMsg(String msg) {    this.msg = msg;  }  public Result(boolean success, String msg) {    super();    this.success = success;    this.msg = msg;  }  public Result(boolean success, T data) {    super();    this.success = success;    this.data = data;  }} 

該類為前後台互動提供了非常大的便捷: 

下面是前背景ajax互動:

 前台ajax代碼:

$.ajax({      url: "<%=request.getContextPath()%>/supp/deleteSupp",      data : {supplierId:supplierId},      async: false, //請求是否非同步,預設為非同步,這也是ajax重要特性      type: "GET",  //請求方式      success: function(data) {        var rs = eval('('+data+')');        flag = rs.success;        if(flag){          alert("刪除成功!");        }      }    }); 

下面是後台java代碼:

  @RequestMapping("/deleteSupp")  @ResponseBody  public Result<String> deleteSupplier(HttpServletRequest request){    Result<String> rs = new Result<>();    String supplierId = request.getParameter("supplierId");    supplierService.deleteSupplierById(supplierId);    rs.setSuccess(true);    return rs;  }

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.