花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

織夢dedecms后臺文章數(shù)據(jù)導(dǎo)出到excel教程

時間: 2018-12-03 08:13 閱讀: 作者:素材無憂網(wǎng)

織夢dedecms后臺文章數(shù)據(jù)導(dǎo)出到excel這個功能比較實用的,因為,很多公司雖然有網(wǎng)站,但是,公司其它部門可能還要把公司數(shù)據(jù)導(dǎo)出到紙上面,以便研究公司數(shù)據(jù)之用,所以,很多的公司對這個功能就要求使用。

導(dǎo)出全部勾選的文章原理是:

   第一步:批量獲取選中的id,這個是由織夢的里面封裝的js實現(xiàn)的。

     第二步:把獲取到的文章id 進行處理轉(zhuǎn)換成  字符串 ,例如  1,2,3,5,6

     實現(xiàn)代碼是:

        if( !empty($aid) && empty($qstr) ) $qstr = $aid;

       

        if($qstr=='')

        {

            ShowMsg('參數(shù)無效!',$ENV_GOBACK_URL);

            exit();

        }

        $qstrs = explode('`',$qstr);

        $idstrs = implode(',', $qstrs);

   第三步:查詢要導(dǎo)出的數(shù)據(jù):

   sql語句是:Select * From `dede_archives` where id in($idstrs)

    也就是說這里使用了 sql語言里面 in 來查詢表中的某些id。

   只要你把上面的三步弄明白了,那么,這個功能就實現(xiàn)了。

===============實現(xiàn)方法=======================

    上面那三步只是分析如何實現(xiàn)的,那里面的代碼不用管,下面是具體的實現(xiàn)代碼,請跟著一步一步操作。

  下載phpexcel類庫,官方已經(jīng)搬到這里了:https://github.com/PHPOffice/PHPExcel

   1)下載后把Classes文件夾放到  /dede/目錄里面。

   2)復(fù)制下面的代碼保存到文件download_excel.php里面,也放到/dede/目錄里面。

測試:

    在瀏覽器里面輸入:localhost/dedecms/dede/download_excel.php?action=allexport&aid=86`87

  注意:請把紅色的路徑換上你的域名,上面因為我在子目錄dedecms裝的程序,如果你裝在根目錄里面,則去掉這個dedecms。

    86`87:表示把文章id為86和87的文章導(dǎo)出來。

    

導(dǎo)出功能代碼:

<?php
require_once(dirname(__FILE__)."/config.php");
if ($action == 'allexport') {
       //批量獲取文章id  www.dedecms51.com網(wǎng)
            if( !empty($aid) && empty($qstr) ) $qstr = $aid;
            
            if($qstr=='')
            {
                ShowMsg('參數(shù)無效!',$ENV_GOBACK_URL);
                exit();
            }
            $qstrs = explode('`',$qstr);
            $idstrs = implode(',', $qstrs);
        include_once (dirname(__FILE__).'/Classes/PHPExcel.php');
        // Create new PHPExcel object
        $objPHPExcel = new PHPExcel();
        $objActSheet = $objPHPExcel->getActiveSheet();
        // Set document properties
        $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")->setLastModifiedBy("Maarten Balliauw")->setTitle("Office 2007 XLSX Test Document")->setSubject("Office 2007 XLSX Test Document")->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")->setKeywords("office 2007 openxml php")->setCategory("Test result file");
        $objPHPExcel->setActiveSheetIndex(0)
        ->setCellValue('A1', 'id')
        ->setCellValue('B1', '標(biāo)題')
        ->setCellValue('C1', '發(fā)布時間')
        ->setCellValue('D1', '會員id')
        ->setCellValue('E1', '欄目id');
        $query = "Select * From `dede_archives` where id in($idstrs) ";
        $dsql->SetQuery($query);
        $dsql->Execute();
        $index = 1;
        while ($row = $dsql->GetArray()) {
                $index++;
                $objPHPExcel->setActiveSheetIndex(0)
                ->setCellValue('A' .$index, $row['id'])
                ->setCellValue('B' .$index, $row['title'])
                ->setCellValue('C' .$index, date("Y-m-d",$row['senddate']))
                ->setCellValue('D' .$index, $row['mid'])
                ->setCellValue('E' .$index, $row['typeid']);
        }
        // Rename worksheet
        $objPHPExcel->getActiveSheet()->setTitle('Simple');
        // Set active sheet index to the first sheet, so Excel opens this as the first sheet
        $objPHPExcel->setActiveSheetIndex(0);
        // Redirect output to a client’s web browser (Excel5)
        header('Content-Type: application/vnd.ms-excel');
        header('Content-Disposition: attachment;filename="list.xls"');
        header('Cache-Control: max-age=0');
        $objWriter = PHPExcel_IOFactory :: createWriter($objPHPExcel, 'Excel5');
        $objWriter->save('php://output');
        exit;
}
?>

 

結(jié)果:

 導(dǎo)出86,87

 

==============完整版====================

上面只是讓你測試,不用寫做太多事,建議先把上面的測試成功了,再看下面的,  下面才是真正應(yīng)用到網(wǎng)站里面的。

     上面已經(jīng)實現(xiàn)導(dǎo)出功能,但是,總不能在瀏覽器里面輸入文章id吧。

  最終還是通過后臺選擇文章,然后,導(dǎo)出。

    這個功能也已經(jīng)實現(xiàn)了。

 

   在后臺添加一個導(dǎo)出文章按扭“導(dǎo)出文檔”。

   在content_list.htm里面添加按扭代碼:

<a href="javascript:eportArc(0)"> 導(dǎo)出文檔 </a>

 

批量獲取id方法:

    1.  實現(xiàn)代碼是通過在/dede/js/list.js添加一個批量獲取id函數(shù)。

   代碼如下所示:

   function eportArc(aid){

    var qstr=getCheckboxItem();

    if(aid==0) aid = getOneItem();

        if(qstr=='')

    {

        alert('必須選擇一個或多個文檔!');

        return;

    }

    location="download_excel.php?aid="+aid+"&action=allexport&qstr="+qstr;

   

}

  2. 注冊這個函數(shù)到上下文菜單

即在 函數(shù)  function ShowMenu(evt,obj,aid,atitle)里面注冊,代碼是:

new ContextItem("導(dǎo)出的文檔",function(){ eportArc(aid); }),


版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 織夢dedecms后臺文章數(shù)據(jù)導(dǎo)出到excel教程

標(biāo)簽:  
模板推薦