DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX詳解 >> 利用AjAX動態變換過濾條件
利用AjAX動態變換過濾條件
編輯:AJAX詳解     

在我的一個Java項目中,需要在數據列表的上面添加過濾功能,可且根據用戶選擇的過濾條件,來生成不同過濾腳本:
//**********************以下是表格的第一行腳本***************************//
   <TD align="center" width="15%" height="25">選擇查詢條件:</TD>
 <TD align="left" width="30%"><select name="FilterName" id="FilterName"
  style="width:100%" >
  <option value=""></option>
        <option value='BugInfo_Title' <%=BugInfoList.getSelected("BugInfo_Title")%>>Bug標題</option>
        <option value='BugInfo_BugUser' <%=BugInfoList.getSelected("BugInfo_BugUser")%>>安裝用戶</option>
        <option value='BugInfo_BugSystem' <%=BugInfoList.getSelected("BugInfo_BugSystem")%>>安裝系統</option>
        <option value='BugInfo_BugTime' <%=BugInfoList.getSelected("BugInfo_BugTime")%>>提交時間</option>
        <option value='BugInfo_DoneTime' <%=BugInfoList.getSelected("BugInfo_DoneTime")%>>完成時間</option>
    </select></TD>
 <TD align="left" width="37%" id="filter"><%=BugInfoList.getFilterHtml()%></TD>
    <TD align="center" width="18%"><A class="TextUrl9" href="Javascript:doFilter();">
     <IMG src="http://www.pushad.com/images/image/chaxun.gif" align="absMiddle" border="0">開始過濾</A>
       <A class="TextUrl9" href="Javascript:doAll();"><IMG
     src="http://www.pushad.com/images/image/cx.gif" align="absMiddle" border="0">全部</A>
    </TD>
  </TR>
//*********************************以下是JavaScript腳本******************************************************//
 /*獲取客戶端XMLHttpRequest請求對象*/
 function getRequest(){
    var request = false;
    try {
        request = new XMLHttpRequest();
    } catch (trymicrosoft) {
        try {
         request = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (othermicrosoft) {
         try {
             request = new ActiveXObject("Microsoft.XMLHTTP");
         } catch (failed) {
             request = false;
         } 
        }
    }
    if (!request) alert("錯誤初始化XMLHttpRequest對象!");
    return request;
 }
    var request=getRequest();
    //改變過濾條件
 function changeFilter() {
      if(request==null) request=getRequest();
      var name = FrmBugInfo.FilterName.value;
      var url ="../AJaxFilter?name="+name;
      request.onreadystatechange = updateFilter;
      request.open("GET", url, true);
      request.send(null);
   }
   //改變過濾條件
   function updateFilter(){
      if (request.readyState == 4) {
         if (request.status == 200) {
            var text=request.responseText;
            document.getElementById("filter").innerHtml=text;
         } else{
            alert("狀態是:" + request.status);
         }
         delete request['onreadystatechange'];
         request=null;//必須清空
      }
   }
//*********************************以下是AJaxFilter源碼,它是一個servlet*********************************************//
    static final String[] TIME={"smalldatetime","datetime","timestamp"};
    static final String[] NUM ={"tinyint","smallint","int","bigint","decimal","numeric",
                                 "float","real","smallmoney","money","binary",};
    static final String SQL   ="select * from DataDict where TableName='%s' and FIEldName='%s'";
    static final String DEFAULT="<input type='text' name='FilterValue' id='FilterValue' value='@value' style='width:100%'></input>";
    static final String DATE   ="<input id=\"@name\" type=\"text\" name=\"@name\" value='@value' \n"
                                +"         class=\"TextBox\" readonly=\"readonly\" style=\"width:100px;\"/> \n"
                         +"         <IMG style=\"CURSOR: hand\" onclick=\"showtime(@name)\"\n"
                                +"         alt=\"選擇日期\" src=\"../images/image/date.gif\" width='16' align='middle'>";
                               
    //doGet和doPost中的源碼
    response.setContentType(CONTENT_TYPE);
    PrintWriter out=response.getWriter();
    String name=request.getParameter("name");
    out.print(PageList.getFilter(name));
       
   /**
     * 得到過濾類型
     * @param name   過濾選擇名稱(包括表名和字段名)
     * @param isAdd  是否添加ClassID,BindFIEld等信息
     * @return
     */
    public static String getFilterType(String name,boolean isAdd){
        if(name!=null){
            int index=name.indexOf("_");
         if(index>=0){
             String[] str=new String[2];
             str[0]=name.substring(0,index);
             str[1]=name.substring(index+1);
             ResultSet rs=DBAccess.getInstance().OpenCommand(Common.Format(SQL,str));
             try{
              if(rs.next()){//時間
                  if(Common.in(TIME,rs.getString("FIEldType"))){
                      return "1";
                  }else if(!isDBNull(rs.getString("ClassID"))){//固定代碼
                      if(isAdd)
                          return "2_"+rs.getString("ClassID");
                      else
                          return "2";
                  }else if(!isDBNull(rs.getString("BindTable"))){//外鍵關聯
                      if(isAdd)
                          return "3_"+rs.getString("BindTable")
                                 +"_"+rs.getString("BindFIEld")
                                 +"_"+rs.getString("BindShowFIEld");
                      else
                          return "3";
                  }else if(Common.in(NUM,rs.getString("FIEldType"))){//數值
                      return "4";
                  }
              }
             }catch(Exception e){}
         }
        }
        return "0";//普通字符串
    }
   
    /**
     * 獲取過濾字符串
     * @param name   過濾類型名稱
     * @param value  第一個過濾值
     * @param value1 第二個過濾值(主要針對時間)
     * @return
     */
    public static String getFilter(String name,String value,String value1){
        String type=getFilterType(name,true);
        int flag=0,pos=type.indexOf("_");
        String[] other=type.split("_");
        if(pos>=0){
            flag=Integer.parseInt(type.substring(0,pos));
        }else{
            flag=Integer.parseInt(type);
        }
        return getFilter(flag,other,value,value1);
    }
   
    /**
     * 獲取過濾字符串
     * @param type    過濾類型
     * @param other   固定代碼編號等
     * @param value   第一個過濾值
     * @param value1  第二個過濾值(主要針對時間)
     * @return
     */
    public static String getFilter(int type,String[] other,String value,String value1){
        if(value==null) value="";
        if(value1==null) value1="";
        switch(type){
           case 0:return DEFAULT.replaceAll("@value",value);//字符串
           case 1:return ("從:"+DATE.replaceAll("@name","FromDate").replaceAll("@value",value)
                   +" 到:"+DATE.replaceAll("@name","ToDate").replaceAll("@value",value1));//時間
           case 2:if(other.length==2)
                      return Html.getInstance().GetList("Exec P_GetBaseCode '"
                             +other[1]+"'",true,true,"FilterValue","100%",value);//固定代碼
           case 3:if(other.length==4)
                  return Html.getInstance().GetList("select distinct "+other[2]+","+other[3]
                         +" from "+other[1],true,true,"FilterValue","100%",value);//外鍵關聯
           case 4:return DEFAULT.replaceAll("@value",value);//數值
        }
        return "";
    }
    /**
     * 得到過濾字符串
     * @param name 過濾名稱
     * @return
     */   
    public static String getFilter(String name){
        return getFilter(name,"","");
    }
   
    /**
     * 檢查是否為空
     * @param obj 要檢查的對象
     * @return
     */
    public static boolean isNull(Object obj){
        if(obj==null || obj.toString().equals(""))
            return true;
        else
            return false;
    }
   
    /**
     * 判斷是否為空,包括空字段
     * @param obj 要判斷的對象
     * @return
     */
    public static boolean isDBNull(Object obj){
        if(isNull(obj) || obj.toString().trim().toLowerCase().equals("null"))
            return true;
        else
            return false;
    }
//*****************************************************************************************//
原理:根據選擇不同的過濾條件,獲取條件中的表名和字段名,利用AJax根據表名和字段名在數據字典中獲取它的類型:
(1)如果是日期型:返回日期范圍選擇
(2)如果是固定代碼:返回一個下拉列表,並初始化固定代碼
(3)如果是外鍵關聯:則讀出所有的外鍵所對應的名稱
(4)否則返回一個文本輸入框
這樣選擇不同的過濾條件(或者說過濾字段),產生不同的過濾效果,而且是異步的,下面顯示的數據列表不用刷新,在這個項目中獲得了較好的用戶體驗。

以下是截圖:

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved