程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> thinkphp中html:list標簽傳遞多個參數實例,thinkphplist

thinkphp中html:list標簽傳遞多個參數實例,thinkphplist

編輯:關於PHP編程

thinkphp中html:list標簽傳遞多個參數實例,thinkphplist


本文實例講述了關於thinkphp中html:list標簽傳多個參數問題解決辦法,分享給大家供大家參考。具體分析如下:

此改動 針對thinkphp 2.0 版本有效,thinkphp 3.0 版本 未測試.
主要修改這個文件 /Thinkphp/Lib/Think/Template/Taglib/TabLibHtml.class.php 的 _list 方法

注釋有新增內容的代碼部分是新增加的
主要通過 -- 分割多個參數(會自動替換為,)

復制代碼 代碼如下:public function _list($attr)
{
        $tag        = $this->parseXmlAttr($attr,'list');
        $id         = $tag['id'];                       //表格ID
        $datasource = $tag['datasource'];               //列表顯示的數據源VoList名稱
        $pk         = empty($tag['pk'])?'id':$tag['pk'];//主鍵名,默認為id
        $style      = $tag['style'];                    //樣式名
        $name       = !empty($tag['name'])?$tag['name']:'vo';                 //Vo對象名
        $action     = $tag['action']=='true'?true:false;                   //是否顯示功能操作
        $key         =  !empty($tag['key'])?true:false;
        $sort      = $tag['sort']=='false'?false:true;
        $checkbox   = $tag['checkbox'];                 //是否顯示Checkbox
        if(isset($tag['actionlist'])) {
            $actionlist = explode(',',trim($tag['actionlist']));    //指定功能列表
        }
        if(substr($tag['show'],0,1)=='$') {
            $show   = $this->tpl->get(substr($tag['show'],1));
        }else {
            $show   = $tag['show'];
        }
        $show       = explode(',',$show);                //列表顯示字段列表
        //計算表格的列數
        $colNum     = count($show);
        if(!empty($checkbox))   $colNum++;
        if(!empty($action))     $colNum++;
        if(!empty($key))  $colNum++;
        //顯示開始
  $parseStr = "<!-- Think 系統列表組件開始 -->n";
        $parseStr  .= '<table id="'.$id.'" class="'.$style.'" cellpadding=0 cellspacing=0 >';
        $parseStr  .= '<tr><td height="5" colspan="'.$colNum.'" class="topTd" ></td></tr>';
        $parseStr  .= '<tr class="row" >';
        //列表需要顯示的字段
        $fields = array();
        foreach($show as $val) {
         $fields[] = explode(':',$val);
        }
        if(!empty($checkbox) && 'true'==strtolower($checkbox)) {//如果指定需要顯示checkbox列
            $parseStr .='<th width="8"><input type="checkbox" id="check" onclick="CheckAll(''.$id.'')"></th>';
        }
        if(!empty($key)) {
            $parseStr .= '<th width="12">No</th>';
        }
        foreach($fields as $field) {//顯示指定的字段
            $property = explode('|',$field[0]);
            $showname = explode('|',$field[1]);
            if(isset($showname[1])) {
                $parseStr .= '<th width="'.$showname[1].'">';
            }else {
                $parseStr .= '<th>';
            }
            $showname[2] = isset($showname[2])?$showname[2]:$showname[0];
            if($sort) {
                $parseStr .= '<a xhref="javascript:sortBy(''.$property[0].'','{$sort}',''.ACTION_NAME.'')" title="按照'.$showname[2].'{$sortType} ">'.$showname[0].'<eq name="order" value="'.$property[0].'" ><img xsrc="/Public/images/{$sortImg}.gif" width="12" height="17" border="0" align="absmiddle"></eq></a></th>';
            }else{
                $parseStr .= $showname[0].'</th>';
            }
        }
        if(!empty($action)) {//如果指定顯示操作功能列
            $parseStr .= '<th >操作</th>';
        }
        $parseStr .= '</tr>';
        $parseStr .= '<volist name="'.$datasource.'" id="'.$name.'" ><tr class="row" '; //支持鼠標移動單元行顏色變化 具體方法在js中定義
        if(!empty($checkbox)) {
            $parseStr .= 'onmouseover="over(event)" onmouseout="out(event)" onclick="change(event)" ';
        }
        $parseStr .= '>';
        if(!empty($checkbox)) {//如果需要顯示checkbox 則在每行開頭顯示checkbox
            $parseStr .= '<td><input type="checkbox" name="key" value="{$'.$name.'.'.$pk.'}"></td>';
        }
        if(!empty($key)) {
            $parseStr .= '<td>{$i}</td>';
        }
        foreach($fields as $field) {
            //顯示定義的列表字段
            $parseStr   .=  '<td>';
            if(!empty($field[2])) {
                // 支持列表字段鏈接功能 具體方法由JS函數實現
                $href = explode('|',$field[2]);
                if(count($href)>1) {
                    //指定鏈接傳的字段值
                    // 支持多個字段傳遞
                    $array = explode('^',$href[1]);
                    if(count($array)>1) {
                        foreach ($array as $a){
                            $temp[] =  ''{$'.$name.'.'.$a.'|addslashes}'';
                        }
                        $parseStr .= '<a xhref="javascript:'.$href[0].'('.implode(',',$temp).')">';
                    }else{
                        $parseStr .= '<a xhref="javascript:'.$href[0].'('{$'.$name.'.'.$href[1].'|addslashes}')">';
                    }
                }else {
                    //如果沒有指定默認傳編號值
                    $parseStr .= '<a xhref="javascript:'.$field[2].'('{$'.$name.'.'.$pk.'|addslashes}')">';
                }
            }
            if(strpos($field[0],'^')) {
                $property = explode('^',$field[0]);
                foreach ($property as $p){
                    $unit = explode('|',$p);
                    if(count($unit)>1) {
                        $parseStr .= '{$'.$name.'.'.$unit[0].'|'.$unit[1].'} ';
                    }else {
                        $parseStr .= '{$'.$name.'.'.$p.'} ';
                    }
                }
            }else{
                $property = explode('|',$field[0]);
                if(count($property)>1) {
                    //轉換 -- 為 , 傳遞多個參數
                    $property[1] = str_replace('--',',',$property[1]);//此處為新增內容
                    $parseStr .= '{$'.$name.'.'.$property[0].'|'.$property[1].'}';
                }else {
                    $parseStr .= '{$'.$name.'.'.$field[0].'}';
                }
            }
            if(!empty($field[2])) {
                $parseStr .= '</a>';
            }
            $parseStr .= '</td>';
        }
        if(!empty($action)) {//顯示功能操作
            if(!empty($actionlist[0])) {//顯示指定的功能項
                $parseStr .= '<td>';
                foreach($actionlist as $val) {
                     //應用 javascript
     if(strpos($val,':')) {
      $a = explode(':',$val);
      if(count($a)>2) {
                            $parseStr .= '<a xhref="javascript:'.$a[0].'('{$'.$name.'.'.$a[2].'}')">'.$a[1].'</a> ';
      }else {
       $parseStr .= '<a xhref="javascript:'.$a[0].'('{$'.$name.'.'.$pk.'}')">'.$a[1].'</a> ';
      }
     }else{
                        //應用 php 函數
      $array = explode('|',$val);
      if(count($array)>2) {
       $parseStr .= ' <a xhref="javascript:'.$array[1].'('{$'.$name.'.'.$array[0].'}')">'.$array[2].'</a> ';
      }else{
                            //轉換 -- 為 , 傳遞多個參數
                            $val = str_replace('--',',',$val);//此處為新增內容
       $parseStr .= ' {$'.$name.'.'.$val.'} ';
      }
     }
                }
                $parseStr .= '</td>';
                //echo $parseStr;
                //exit();
            }
        }
        $parseStr .= '</tr></volist><tr><td height="5" colspan="'.$colNum.'" class="bottomTd"></td></tr></table>';
        $parseStr .= "n<!-- Think 系統列表組件結束 -->n";
        return $parseStr;
}

模版調用演示:

復制代碼 代碼如下:<html:list id="checkList" name="user" checkbox="true" action="true" datasource="list" show="id:編號,task_title:任務標題:edit,task_type|getTaskType:任務類型,task_category|getTaskCategory=$user['exe_user']--$user['id']:所屬欄目,hope_time|toDate='Y-m-d H#i':期望完成時間,process_rate|printRate:當前進度,exe_user|getUserName:處理人,status|getTaskStatus:狀態" actionlist="status|printAccept=$user['exe_user']--$user['id'],task_track:跟蹤" />

方法 getTaskCategory 傳遞了3個參數 順序是:
$user['task_category']
$user['exe_user']
$user['id']

方法 printAccept 傳遞了3個參數 順序是:
$user['status']
$user['exe_user']
$user['id']

其中:
復制代碼 代碼如下:task_category|getTaskCategory=$user['exe_user']--$user['id']:

復制代碼 代碼如下:status|printAccept=$user['exe_user']--$user['id'],task_track:跟蹤為 傳遞多個參數的演示

希望本文所述對大家的ThinkPHP框架程序設計有所幫助。


html:link傳遞多個參數

如果所傳的參數確實有值的話應該是afaa.jsp?z=3&y=2&x=1,你上面那種情況可能是因為你傳的值為空或為""才沒有在等號後面顯示出屬性的值。&是標識用來傳遞多個參數,起到了屬性之間的間隔的作用
 

html中怎通過超鏈接的錨標簽(<a href>)傳遞參數?

用問號和&符號帶值啊,比如這個例子
<a href="www.ttjsyyq.com/...d=3002">錨標簽</a>
?後面的second_id=參數,可以到下個頁面接收second_id傳過來的值,也就是3002
asp接收是這樣寫的
second_id=Request.QueryString("second_id")
response.write(second_id)
那麼輸入就會顯示3002
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved