這篇文章主要為大家詳細介紹了下拉選單的級聯操作,分享了ajax與後台互動傳輸資料的工具類,有興趣的小夥伴們可以參考一下
在開發中常常會遇到菜單的級聯操作,例如:國家、城市、鄉鎮的選擇等。當選中某個國家的時候,後面的菜單會把該國家內的城市羅列出來,當選中城市的時候,後面的菜單會把對應的鄉鎮列出來。
解決這種選單的級聯操作的辦法,我理解的有兩種:
①使用js來實現,把頁面所用到的級聯資料放到js內,當頁面載入完成後,透過js顯示到對應的select內,這種方法的解決辦法有很多種,最為直觀的一種是放到多維數組中,每個人的思維不一樣,這裡就不詳細解說。
②使用ajax非同步動態加載,然後顯示到對應的select內,這種方法很便捷,建議在開發中使用。
下面看一個開發中的小範例:
JSP簡短頁面:
<p class="form-group"> <label class="col-sm-2 control-label">设备类别</label> <p class="col-sm-4"> <select class="basic-single" name="codeCategory" onchange="showCodeSubCate()" id="codeCategory" style="width: 100%"> </select> </p> <label class="col-sm-2 control-label">设备子类</label> <p class="col-sm-4"> <select class="basic-single" name="codeSubCategory" id="codeSubCate" disabled="disabled" style="width: 100%"> <option value="">--请选择--</option> </select> </p> </p>
下面來看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); } }); }
@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請求,值得介紹的是後台回傳的數據,回傳值類型為Resultf7e83be87db5cd2d9a8a0b8117b38cd4,該回傳值類型是一個工具類,具體實作可以在我的部落格中查看,連結為: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互動: 下面是後台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; }上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
###AJAX顯示載入中並彈出圖層遮蔽頁面的實作範例###############Ajax提交Form表單頁面仍會刷新問題的快速解決方案###############ajax快速解決參數過長無法提交成功的問題############### ############以上是下拉式選單的級聯操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!