首頁  >  文章  >  web前端  >  在easy中有關ui下拉框動態級聯加載

在easy中有關ui下拉框動態級聯加載

亚连
亚连原創
2018-06-23 15:46:281410瀏覽

這篇文章主要介紹了easyui下拉框動態級聯載入的範例程式碼,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

easyui的下拉框動態加載數據,高校中要根據首先查詢所有學院,然後根據學院動態加載課程。下面看如何實現。

1.介面效果

2. html js程式碼

<span>学院名称:</span> 
<input class="easyui-combobox" style="width:30%;" id="collegeName"> 
<span>课程名称:</span> 
<input class="easyui-combobox" style="width:30%;" id="courseName"><br/>
$(function() {    
   // 下拉框选择控件,下拉框的内容是动态查询数据库信息 
   $(&#39;#collegeName&#39;).combobox({  
       url:&#39;${pageContext.request.contextPath}/loadInstitution&#39;,  
       editable:false, //不可编辑状态 
       cache: false, 
       panelHeight: &#39;150&#39;, 
       valueField:&#39;id&#39;,   
       textField:&#39;institutionName&#39;, 
        
    onHidePanel: function(){ 
      $("#courseName").combobox("setValue",&#39;&#39;);//清空课程 
      var id = $(&#39;#collegeName&#39;).combobox(&#39;getValue&#39;);     
      //alert(id); 
       
     $.ajax({ 
      type: "POST", 
      url: &#39;${pageContext.request.contextPath}/loadCourse?id=&#39; + id, 
      cache: false, 
      dataType : "json", 
      success: function(data){ 
      $("#courseName").combobox("loadData",data); 
           } 
        });    
       } 
});   
    
   $(&#39;#courseName&#39;).combobox({  
     //url:&#39;itemManage!categorytbl&#39;,  
     editable:false, //不可编辑状态 
     cache: false, 
     panelHeight: &#39;150&#39;,//自动高度适合 
     valueField:&#39;id&#39;,   
     textField:&#39;courseName&#39; 
     }); 
    
});

3.後台程式碼

@RequestMapping("/loadInstitution") 
  /** 
   * 加载学院 
   * @param  
   * @param  
   * @return void 
   * @exception/throws [违例类型] [违例说明] 
   * @see     [类、类#方法、类#成员] 
   * @deprecated 
   */ 
  public void loadInstitute(HttpServletRequest request, 
      HttpServletResponse response) throws Exception { 
    try { 
      JackJsonUtils JackJsonUtils = new JackJsonUtils(); 
      List<Institution> institutionList = institutionBean 
          .queryAllColleage(); 
      System.out.println("学院list大小=====" + institutionList.size()); 
      String result = JackJsonUtils.BeanToJson(institutionList); 
      System.out.println(result); 
      JsonUtils.outJson(response, result); 
    } catch (Exception e) { 
      logger.error("加载学院失败", e); 
    } 
  } 
 
  @RequestMapping("/loadCourse") 
  /** 
   * 动态加载课程 
   * 
   * 
   * @param  
   * @param  
   * @return void 
   * @exception/throws [违例类型] [违例说明] 
   * @see     [类、类#方法、类#成员] 
   * @deprecated 
   */ 
  public void loadCourse(HttpServletRequest request, 
      HttpServletResponse response) throws Exception { 
    JackJsonUtils JackJsonUtils = new JackJsonUtils(); 
    String id = request.getParameter("id"); 
    System.out.println("学院id====" + id); 
    try { 
      if(id != null && id != ""){ 
        List<CourseInfo> listCourseInfoList = courseBean 
            .queryAllCourseInfos(id); 
        System.out.println("课程list大小=====" + listCourseInfoList.size()); 
        String result = JackJsonUtils.BeanToJson(listCourseInfoList); 
        System.out.println(result); 
        JsonUtils.outJson(response, result); 
      } 
    } catch (Exception e) { 
      logger.error("加载课程失败", e); 
    } 
  }

根據基礎提供的介面查詢學院和課程,轉換為json格式後綁定到前台控制。

上面是我整理給大家的,希望今後對大家有幫助。

相關文章:

使用Electron建立React Webpack桌面應用程式(詳細教學)

在微信小程式中如何實現左右滑動

在JavaScript中有哪些特殊資料型別

#在微信小程式中如何使用ajax實作請求伺服器資料

以上是在easy中有關ui下拉框動態級聯加載的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn