服务器端数据表结合了列数据和其他表中的数据

如何解决服务器端数据表结合了列数据和其他表中的数据

我通过AJAX获得了此数据表:

enter image description here

我想把它变成服务器端,因为它将容纳1万多个条目。这是我使用Datatables文档编写的代码:

服务器端获取数据:

<?php
 
/*
 * DataTables example server-side processing script.
 *
 * Please note that this script is intentionally extremely simple to show how
 * server-side processing can be implemented,and probably shouldn't be used as
 * the basis for a large complex system. It is suitable for simple use cases as
 * for learning.
 *
 * See http://datatables.net/usage/server-side for full details on the server-
 * side processing requirements of DataTables.
 *
 * @license MIT - http://datatables.net/license_mit
 */
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Easy set variables
 */
 
// DB table to use
$table = 'library_book';
 
// Table's primary key
$primaryKey = 'id';
 
// Array of database columns which should be read and sent back to DataTables.
// The `db` parameter represents the column name in the database,while the `dt`
// parameter represents the DataTables column identifier. In this case simple
// indexes
$columns = array(
    array( 'db' => 'title','dt' => 0 ),array( 'db' => 'subtitle','dt' => 1 ),array( 'db' => 'isbn','dt' => 2 ),array( 'db' => 'subject_id','dt' => 3 ),array( 'db' => 'author_id','dt' => 4 ),array( 'db' => 'creator_id','dt' => 5 ),array(
        'db'        => 'creationdate','dt'        => 6,'formatter' => function( $d,$row ) {
            return date( 'jS M y',strtotime($d));
        }
    )
);
 
// SQL server connection information
$sql_details = array(
    'user' => 'root','pass' => '','db'   => 'mycbs','host' => 'localhost'
);
 
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * If you just want to use the basic configuration for DataTables with PHP
 * server-side,there is no need to edit below this line.
 */
 
require( 'ssp.class.php' );
 
echo json_encode(
    SSP::simple( $_GET,$sql_details,$table,$primaryKey,$columns )
);

SSP类别:

<?php

/*
 * Helper functions for building a DataTables server-side processing SQL query
 *
 * The static functions in this class are just helper functions to help build
 * the SQL used in the DataTables demo server-side processing scripts. These
 * functions obviously do not represent all that can be done with server-side
 * processing,they are intentionally simple to show how it works. More complex
 * server-side processing operations will likely require a custom script.
 *
 * See http://datatables.net/usage/server-side for full details on the server-
 * side processing requirements of DataTables.
 *
 * @license MIT - http://datatables.net/license_mit
 */


class SSP {
    /**
     * Create the data output array for the DataTables rows
     *
     *  @param  array $columns Column information array
     *  @param  array $data    Data from the SQL get
     *  @return array          Formatted data in a row based format
     */
    static function data_output ( $columns,$data )
    {
        $out = array();

        for ( $i=0,$ien=count($data) ; $i<$ien ; $i++ ) {
            $row = array();

            for ( $j=0,$jen=count($columns) ; $j<$jen ; $j++ ) {
                $column = $columns[$j];

                // Is there a formatter?
                if ( isset( $column['formatter'] ) ) {
                    if(empty($column['db'])){
                        $row[ $column['dt'] ] = $column['formatter']( $data[$i] );
                    }
                    else{
                        $row[ $column['dt'] ] = $column['formatter']( $data[$i][ $column['db'] ],$data[$i] );
                    }
                }
                else {
                    if(!empty($column['db'])){
                        $row[ $column['dt'] ] = $data[$i][ $columns[$j]['db'] ];
                    }
                    else{
                        $row[ $column['dt'] ] = "";
                    }
                }
            }

            $out[] = $row;
        }

        return $out;
    }


    /**
     * Database connection
     *
     * Obtain an PHP PDO connection from a connection details array
     *
     *  @param  array $conn SQL connection details. The array should have
     *    the following properties
     *     * host - host name
     *     * db   - database name
     *     * user - user name
     *     * pass - user password
     *  @return resource PDO connection
     */
    static function db ( $conn )
    {
        if ( is_array( $conn ) ) {
            return self::sql_connect( $conn );
        }

        return $conn;
    }


    /**
     * Paging
     *
     * Construct the LIMIT clause for server-side processing SQL query
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @return string SQL limit clause
     */
    static function limit ( $request,$columns )
    {
        $limit = '';

        if ( isset($request['start']) && $request['length'] != -1 ) {
            $limit = "LIMIT ".intval($request['start']).",".intval($request['length']);
        }

        return $limit;
    }


    /**
     * Ordering
     *
     * Construct the ORDER BY clause for server-side processing SQL query
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @return string SQL order by clause
     */
    static function order ( $request,$columns )
    {
        $order = '';

        if ( isset($request['order']) && count($request['order']) ) {
            $orderBy = array();
            $dtColumns = self::pluck( $columns,'dt' );

            for ( $i=0,$ien=count($request['order']) ; $i<$ien ; $i++ ) {
                // Convert the column index into the column data property
                $columnIdx = intval($request['order'][$i]['column']);
                $requestColumn = $request['columns'][$columnIdx];

                $columnIdx = array_search( $requestColumn['data'],$dtColumns );
                $column = $columns[ $columnIdx ];

                if ( $requestColumn['orderable'] == 'true' ) {
                    $dir = $request['order'][$i]['dir'] === 'asc' ?
                        'ASC' :
                        'DESC';

                    $orderBy[] = '`'.$column['db'].'` '.$dir;
                }
            }

            if ( count( $orderBy ) ) {
                $order = 'ORDER BY '.implode(',',$orderBy);
            }
        }

        return $order;
    }


    /**
     * Searching / Filtering
     *
     * Construct the WHERE clause for server-side processing SQL query.
     *
     * NOTE this does not match the built-in DataTables filtering which does it
     * word by word on any field. It's possible to do here performance on large
     * databases would be very poor
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array $columns Column information array
     *  @param  array $bindings Array of values for PDO bindings,used in the
     *    sql_exec() function
     *  @return string SQL where clause
     */
    static function filter ( $request,$columns,&$bindings )
    {
        $globalSearch = array();
        $columnSearch = array();
        $dtColumns = self::pluck( $columns,'dt' );

        if ( isset($request['search']) && $request['search']['value'] != '' ) {
            $str = $request['search']['value'];

            for ( $i=0,$ien=count($request['columns']) ; $i<$ien ; $i++ ) {
                $requestColumn = $request['columns'][$i];
                $columnIdx = array_search( $requestColumn['data'],$dtColumns );
                $column = $columns[ $columnIdx ];

                if ( $requestColumn['searchable'] == 'true' ) {
                    if(!empty($column['db'])){
                        $binding = self::bind( $bindings,'%'.$str.'%',PDO::PARAM_STR );
                        $globalSearch[] = "`".$column['db']."` LIKE ".$binding;
                    }
                }
            }
        }

        // Individual column filtering
        if ( isset( $request['columns'] ) ) {
            for ( $i=0,$dtColumns );
                $column = $columns[ $columnIdx ];

                $str = $requestColumn['search']['value'];

                if ( $requestColumn['searchable'] == 'true' &&
                 $str != '' ) {
                    if(!empty($column['db'])){
                        $binding = self::bind( $bindings,PDO::PARAM_STR );
                        $columnSearch[] = "`".$column['db']."` LIKE ".$binding;
                    }
                }
            }
        }

        // Combine the filters into a single string
        $where = '';

        if ( count( $globalSearch ) ) {
            $where = '('.implode(' OR ',$globalSearch).')';
        }

        if ( count( $columnSearch ) ) {
            $where = $where === '' ?
                implode(' AND ',$columnSearch) :
                $where .' AND '. implode(' AND ',$columnSearch);
        }

        if ( $where !== '' ) {
            $where = 'WHERE '.$where;
        }

        return $where;
    }


    /**
     * Perform the SQL queries needed for an server-side processing requested,* utilising the helper functions of this class,limit(),order() and
     * filter() among others. The returned array is ready to be encoded as JSON
     * in response to an SSP request,or can be modified if needed before
     * sending back to the client.
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array|PDO $conn PDO connection resource or connection parameters array
     *  @param  string $table SQL table to query
     *  @param  string $primaryKey Primary key of the table
     *  @param  array $columns Column information array
     *  @return array          Server-side processing response array
     */
    static function simple ( $request,$conn,$columns )
    {
        $bindings = array();
        $db = self::db( $conn );

        // Build the SQL query string from the request
        $limit = self::limit( $request,$columns );
        $order = self::order( $request,$columns );
        $where = self::filter( $request,$bindings );

        // Main query to actually get the data
        $data = self::sql_exec( $db,$bindings,"SELECT `".implode("`,`",self::pluck($columns,'db'))."`
             FROM `$table`
             $where
             $order
             $limit"
        );

        // Data set length after filtering
        $resFilterLength = self::sql_exec( $db,"SELECT COUNT(`{$primaryKey}`)
             FROM   `$table`
             $where"
        );
        $recordsFiltered = $resFilterLength[0][0];

        // Total data set length
        $resTotalLength = self::sql_exec( $db,"SELECT COUNT(`{$primaryKey}`)
             FROM   `$table`"
        );
        $recordsTotal = $resTotalLength[0][0];

        /*
         * Output
         */
        return array(
            "draw"            => isset ( $request['draw'] ) ?
                intval( $request['draw'] ) :
                0,"recordsTotal"    => intval( $recordsTotal ),"recordsFiltered" => intval( $recordsFiltered ),"data"            => self::data_output( $columns,$data )
        );
    }


    /**
     * The difference between this method and the `simple` one,is that you can
     * apply additional `where` conditions to the SQL queries. These can be in
     * one of two forms:
     *
     * * 'Result condition' - This is applied to the result set,but not the
     *   overall paging information query - i.e. it will not effect the number
     *   of records that a user sees they can have access to. This should be
     *   used when you want apply a filtering condition that the user has sent.
     * * 'All condition' - This is applied to all queries that are made and
     *   reduces the number of records that the user can access. This should be
     *   used in conditions where you don't want the user to ever have access to
     *   particular records (for example,restricting by a login id).
     *
     *  @param  array $request Data sent to server by DataTables
     *  @param  array|PDO $conn PDO connection resource or connection parameters array
     *  @param  string $table SQL table to query
     *  @param  string $primaryKey Primary key of the table
     *  @param  array $columns Column information array
     *  @param  string $whereResult WHERE condition to apply to the result set
     *  @param  string $whereAll WHERE condition to apply to all queries
     *  @return array          Server-side processing response array
     */
    static function complex ( $request,$whereResult=null,$whereAll=null )
    {
        $bindings = array();
        $db = self::db( $conn );
        $localWhereResult = array();
        $localWhereAll = array();
        $whereAllSql = '';

        // Build the SQL query string from the request
        $limit = self::limit( $request,$bindings );

        $whereResult = self::_flatten( $whereResult );
        $whereAll = self::_flatten( $whereAll );

        if ( $whereResult ) {
            $where = $where ?
                $where .' AND '.$whereResult :
                'WHERE '.$whereResult;
        }

        if ( $whereAll ) {
            $where = $where ?
                $where .' AND '.$whereAll :
                'WHERE '.$whereAll;

            $whereAllSql = 'WHERE '.$whereAll;
        }

        // Main query to actually get the data
        $data = self::sql_exec( $db,"SELECT COUNT(`{$primaryKey}`)
             FROM   `$table` ".
            $whereAllSql
        );
        $recordsTotal = $resTotalLength[0][0];

        /*
         * Output
         */
        return array(
            "draw"            => isset ( $request['draw'] ) ?
                intval( $request['draw'] ) :
                0,$data )
        );
    }


    /**
     * Connect to the database
     *
     * @param  array $sql_details SQL server connection details array,with the
     *   properties:
     *     * host - host name
     *     * db   - database name
     *     * user - user name
     *     * pass - user password
     * @return resource Database connection handle
     */
    static function sql_connect ( $sql_details )
    {
        try {
            $db = @new PDO(
                "mysql:host={$sql_details['host']};dbname={$sql_details['db']}",$sql_details['user'],$sql_details['pass'],array( PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION )
            );
        }
        catch (PDOException $e) {
            self::fatal(
                "An error occurred while connecting to the database. ".
                "The error reported by the server was: ".$e->getMessage()
            );
        }

        return $db;
    }


    /**
     * Execute an SQL query on the database
     *
     * @param  resource $db  Database handler
     * @param  array    $bindings Array of PDO binding values from bind() to be
     *   used for safely escaping strings. Note that this can be given as the
     *   SQL query string if no bindings are required.
     * @param  string   $sql SQL query to execute.
     * @return array         Result from the query (all rows)
     */
    static function sql_exec ( $db,$sql=null )
    {
        // Argument shifting
        if ( $sql === null ) {
            $sql = $bindings;
        }

        $stmt = $db->prepare( $sql );
        //echo $sql;

        // Bind parameters
        if ( is_array( $bindings ) ) {
            for ( $i=0,$ien=count($bindings) ; $i<$ien ; $i++ ) {
                $binding = $bindings[$i];
                $stmt->bindValue( $binding['key'],$binding['val'],$binding['type'] );
            }
        }

        // Execute
        try {
            $stmt->execute();
        }
        catch (PDOException $e) {
            self::fatal( "An SQL error occurred: ".$e->getMessage() );
        }

        // Return all
        return $stmt->fetchAll( PDO::FETCH_BOTH );
    }


    /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
     * Internal methods
     */

    /**
     * Throw a fatal error.
     *
     * This writes out an error message in a JSON string which DataTables will
     * see and show to the user in the browser.
     *
     * @param  string $msg Message to send to the client
     */
    static function fatal ( $msg )
    {
        echo json_encode( array( 
            "error" => $msg
        ) );

        exit(0);
    }

    /**
     * Create a PDO binding key which can be used for escaping variables safely
     * when executing a query with sql_exec()
     *
     * @param  array &$a    Array of bindings
     * @param  *      $val  Value to bind
     * @param  int    $type PDO field type
     * @return string       Bound key to be used in the SQL where this parameter
     *   would be used.
     */
    static function bind ( &$a,$val,$type )
    {
        $key = ':binding_'.count( $a );

        $a[] = array(
            'key' => $key,'val' => $val,'type' => $type
        );

        return $key;
    }


    /**
     * Pull a particular property from each assoc. array in a numeric array,* returning and array of the property values from each item.
     *
     *  @param  array  $a    Array to get data from
     *  @param  string $prop Property to read
     *  @return array        Array of property values
     */
    static function pluck ( $a,$prop )
    {
        $out = array();

        for ( $i=0,$len=count($a) ; $i<$len ; $i++ ) {
            if(empty($a[$i][$prop])){
                continue;
            }
            //removing the $out array index confuses the filter method in doing proper binding,//adding it ensures that the array data are mapped correctly
            $out[$i] = $a[$i][$prop];
        }

        return $out;
    }


    /**
     * Return a string from an array or a string
     *
     * @param  array|string $a Array to join
     * @param  string $join Glue for the concatenation
     * @return string Joined string
     */
    static function _flatten ( $a,$join = ' AND ' )
    {
        if ( ! $a ) {
            return '';
        }
        else if ( $a && is_array($a) ) {
            return implode( $join,$a );
        }
        return $a;
    }
}

表格初始化/ html:

<script type="text/javascript">
    
$(document).ready(function() {
    $('#books').DataTable( {
                dom: "<'row'<'col-md-4'B><'col-md-4'f><'col-md-4'p>>" +
                       "<'row'<'col-md-6'><'col-md-6'>>" +
                       "<'row'<'col-md-12't>><'row'<'col-md-4'l><'col-md-4'i><'col-md-4'p>>",buttons: [
                     {
                         extend: 'collection',text: '<i class="la la-download"></i> Export',autoClose: true,className: 'btn btn-success btn-icon-sm btn-square dropdown-toggle',buttons: [
                                     { text: '<i class="fas fa-copy"></i>\xa0\xa0  Copy',extend: 'copyHtml5'},{ text: '<i class="fas fa-file-excel"></i>\xa0\xa0  Excel',extend: 'excelHtml5'},{ text: '<i class="fas fa-file-csv"></i>\xa0\xa0  CSV',extend: 'csvHtml5'},{ text: '<i class="fas fa-file-pdf"></i>\xa0\xa0  PDF',extend: 'pdfHtml5'},{ text: '<i class="fas fa-print"></i>\xa0\xa0  Print',extend: 'print' }
                                  ],fade: true,}
                  ],"columnDefs": [
                    {
                        "targets": 0,"render": function ( data,type,full,row ) {
                            "<a class='kt-link kt-font-bold' href='./book/'>"+data+" | "+row[1]+"</a>";
                        },},{ "visible": false,"targets": [ 1 ] }
                ],pageLength: 25,responsive: true,"processing": true,"serverSide": true,"ajax": "index.php?action=ss-books-get"
            } );
} );
    
//    $(document).ready(function(){
//        getBooks();
//    });
</script>
<div class="row">
    <div class="col-md-12">
        <div class="kt-portlet">
          <div class="kt-portlet__body">
              <?php if(count($autores)>0):?>
              <table class="table table-striped- table-hover" id="books">
                <thead class="thead-light">
                    <tr>
                        <th>Title</th>
                        <th>ISBN</th>
                        <th>Subject</th>
                        <th>Level</th>
                        <th>Category</th>
                        <th>Copies</th>
                        <th>Actions</th>
                    </tr>
                </thead>
                <tbody id="tBody">
                    
                </tbody>
              </table>
              <?php else: ?>
              <?php getAlertMsg("1"); ?>
              <?php endif; ?>
            </div>
        </div>
    </div>
</div>

我遇到的问题是:

  • 需要将“标题”和“字幕”列混合到同一列中,并获得ID来设置链接。

    “ columnDefs”:[ { “目标”:0, “ render”:函数(数据,类型,完整,行){ “” + data +“ |” +行1 +“”; }, }, {“ visible”:否,“ targets”: 1 } ]

此部分可用于添加html,但无法混合所需的数据...

  • 另外,我从数据库中的其他表获取级别/主题/类别,那么,如何从其他表获取数据以添加类别列表?

  • 在“份数”列中,im计算BBDD中另一张表中一本书的份数。我该如何在服务器端做到这一点?

这是我的BBDD,其中包含我正在谈论的数据:

enter image description here

解决方法

为了实现我所需要的,我在Datatable初始化脚本和ss-books-get控制器中进行了一些更改。

数据表初始化:

$(document).ready(function() {
    $('#books').DataTable( {
          dom: "<'row'<'col-md-4'B><'col-md-4'f><'col-md-4'p>>" +
                 "<'row'<'col-md-6'><'col-md-6'>>" +
                 "<'row'<'col-md-12't>><'row'<'col-md-4'l><'col-md-4'i><'col-md-4'p>>",buttons: [
               {
                   extend: 'collection',text: '<i class="la la-download"></i> Export',autoClose: true,className: 'btn btn-success btn-icon-sm btn-square dropdown-toggle',buttons: [
                               { text: '<i class="fas fa-copy"></i>\xa0\xa0  Copy',extend: 'copyHtml5'},{ text: '<i class="fas fa-file-excel"></i>\xa0\xa0  Excel',extend: 'excelHtml5'},{ text: '<i class="fas fa-file-csv"></i>\xa0\xa0  CSV',extend: 'csvHtml5'},{ text: '<i class="fas fa-file-pdf"></i>\xa0\xa0  PDF',extend: 'pdfHtml5'},{ text: '<i class="fas fa-print"></i>\xa0\xa0  Print',extend: 'print' }
                            ],fade: true,}
            ],"columnDefs": [
              // Use render to mix the title column and the subtitle column and to add the HTML tags. Also generate de buttons grabbing the ID from the id column of the table.
              {
                  "render": function ( data,type,row ) {
                      if (row[8] == "") {
                          var title = data;
                      } else {
                          var title = data + ' | ' + row[8];
                      }
                      return '<a class="kt-link kt-font-bold" href="./book/'+row[7]+'" >' + title + '</a>';
                  },"targets": 0
              },{
                  "render": function ( data,row ) {
                      return '<a href="./book/'+row[7]+'" class="btn btn-sm btn-clean btn-icon btn-icon-md" title="View Book"> <i class="fas fa-eye"></i> </a> <a href="./book/'+row[7]+'#add-copy" class="btn btn-sm btn-clean btn-icon btn-icon-md" title="Add Copy"> <i class="fas fa-plus"></i> </a> <a href="./book/'+row[7]+'#edit-book" class="btn btn-sm btn-clean btn-icon btn-icon-md" title="Edit Book"> <i class="fas fa-edit"></i> </a> <a href="./index.php?action=book-del&id='+row[7]+'" id="btn" class="btn btn-sm btn-clean btn-icon btn-icon-md btn-book-del" title="Delete Book"> <i class="fas fa-trash-alt"></i> </a>';
                  },"targets": 6
              },// Then hide the subtitle/id columns (which I won't need to show in frontend)
              { "visible": false,"targets": [ 7 ] },{ "visible": false,"targets": [ 8 ] }
          ],pageLength: 25,responsive: true,"processing": true,"serverSide": true,"ajax": "index.php?action=ss-books-get"
      } );
} );

控制器ss-books-get:

<?php

$table = 'library_book';
 
$primaryKey = 'id';

$columns = array(
    
    array(
        'db'        => 'title','dt'        => 0
    ),array( 'db' => 'isbn','dt' => 1 ),array(
        'db'        => 'subject_id','dt'        => 2,'formatter' => function( $d,$row ) {
            return library::getSubjectByID($d);
        }
    ),array(
        'db'        => 'id','dt'        => 3,$row ) {
            return library::getLevelsByBookID($d);
        }
    ),'dt'        => 4,$row ) {
            return library::getCategoriesByBookID($d);
        }
    ),'dt'        => 5,$row ) {
            return library::getCountCopiesByBookID($d);
        }
    ),array(
        'db'        => 'type','dt'        => 6
    ),'dt'        => 7
    ),array(
        'db'        => 'subtitle','dt'        => 8
    ),);

require( 'ssp.class.php' );
 
echo json_encode(
    SSP::complex( $_GET,$sql_details,$table,$primaryKey,$columns,$whereResult=null,$whereAll="hidden = 0 AND type = 1"  )
);

我创建了4个功能,以按图书ID获取主题,级别,类别和副本。

以下是功能:

public static function getSubjectByID($id) {
    if ($id == NULL) { $id = 0; } else {}
    $a = new SQLMan();
    $a->tablename = "library_subject";
    $result = $a->select("","",$where="id =".$id);
    if (empty($result)) {
        return '<span class="kt-badge kt-badge--success greysuccess kt-badge--inline kt-badge--pill"> N/A </span>';
    } else {
        $result = $result[0];
        return '<span class="kt-badge kt-badge--success kt-badge--inline kt-badge--pill">'.$result->fields["name"].'</span>';
    }
}
public static function getCategoriesByBookID($id) {
    $final = "";
    $a = new SQLMan();
    $a->tablename = "library_category";
    $categoria= $a->select("",$where=" hidden = 0");
    $a = "";
    $a = new SQLMan();
    $a->tablename = "library_categoryvsbook";
    $anycat = $a->select("many","book_id=".$id);
    if (count($anycat)>0) {
        foreach($anycat as $cl) {
            foreach($categoria as $cat) {
                if ($cat->fields["id"] == $cl->fields["category_id"]) {
                    $final .= "<span class='kt-badge kt-badge--success  kt-badge--inline kt-badge--pill'>".$cat->fields["name"]."</span> ";
                    $a = "";
                } else {

                }
            }
        } 
    } else {
        $final .= "<span class='kt-badge kt-badge--success greysuccess kt-badge--inline kt-badge--pill'>N/A</span> ";
        $a = "";
    }
    return $final;
}
public static function getLevelsByBookID($id) {
    $final = "";
    $a = new SQLMan();
    $a->tablename = "library_level";
    $categoria= $a->select("",$where=" hidden = 0");
    $a = "";
    $a = new SQLMan();
    $a->tablename = "library_levelvsbook";
    $anycat= $a->select("many","book_id=".$id);
    
    if (count($anycat)>0) {
        foreach($anycat as $cl) {
            foreach($categoria as $cat) {
                if ($cat->fields["id"] == $cl->fields["level_id"]) {
                    $final .= "<span class='kt-badge kt-badge--success  kt-badge--inline kt-badge--pill'>".$cat->fields["name"]."</span> ";
                    $a = "";
                } else {

                }
            }
        } 
    } else {
        $final .= "<span class='kt-badge kt-badge--success greysuccess kt-badge--inline kt-badge--pill'>N/A</span> ";
        $a = "";
    }
    return $final;
}
public static function getCountCopiesByBookID($id) {
    $result = "";
    $a = new SQLMan();
    $a->tablename = "library_copy";
    $ejemplares= $a->select("",$where=" hidden = 0 AND book_id =".$id);
    
    $count = "0";
    $countb = "0";
    foreach($ejemplares as $ejem) { 
        if ($ejem->fields["status"] == "0") {
            $count++;
        } else {
        }
    }
    $countb = count($ejemplares);
    if ($count>0) { 
        $popcount = "kt-badge--success"; 
    } else { 
        $popcount = "kt-badge--success greysuccessbadge";
    }; 
    $result .= "<span class='kt-badge ".$popcount." kt-badge--dot kt-badge--xl'></span>&nbsp;&nbsp; "; 
    $result .= $count . " / " . $countb; 
    $count = "0"; $countb = "0";
    return $result;
}

现在看起来完全一样,但是处理速度更快。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-
参考1 参考2 解决方案 # 点击安装源 协议选择 http:// 路径填写 mirrors.aliyun.com/centos/8.3.2011/BaseOS/x86_64/os URL类型 软件库URL 其他路径 # 版本 7 mirrors.aliyun.com/centos/7/os/x86
报错1 [root@slave1 data_mocker]# kafka-console-consumer.sh --bootstrap-server slave1:9092 --topic topic_db [2023-12-19 18:31:12,770] WARN [Consumer clie
错误1 # 重写数据 hive (edu)&gt; insert overwrite table dwd_trade_cart_add_inc &gt; select data.id, &gt; data.user_id, &gt; data.course_id, &gt; date_format(
错误1 hive (edu)&gt; insert into huanhuan values(1,&#39;haoge&#39;); Query ID = root_20240110071417_fe1517ad-3607-41f4-bdcf-d00b98ac443e Total jobs = 1
报错1:执行到如下就不执行了,没有显示Successfully registered new MBean. [root@slave1 bin]# /usr/local/software/flume-1.9.0/bin/flume-ng agent -n a1 -c /usr/local/softwa
虚拟及没有启动任何服务器查看jps会显示jps,如果没有显示任何东西 [root@slave2 ~]# jps 9647 Jps 解决方案 # 进入/tmp查看 [root@slave1 dfs]# cd /tmp [root@slave1 tmp]# ll 总用量 48 drwxr-xr-x. 2
报错1 hive&gt; show databases; OK Failed with exception java.io.IOException:java.lang.RuntimeException: Error in configuring object Time taken: 0.474 se
报错1 [root@localhost ~]# vim -bash: vim: 未找到命令 安装vim yum -y install vim* # 查看是否安装成功 [root@hadoop01 hadoop]# rpm -qa |grep vim vim-X11-7.4.629-8.el7_9.x
修改hadoop配置 vi /usr/local/software/hadoop-2.9.2/etc/hadoop/yarn-site.xml # 添加如下 &lt;configuration&gt; &lt;property&gt; &lt;name&gt;yarn.nodemanager.res