第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

無(wú)法使用 php 格式化來(lái)自 mysql 數(shù)據(jù)庫(kù)的 DataTables 數(shù)據(jù)

無(wú)法使用 php 格式化來(lái)自 mysql 數(shù)據(jù)庫(kù)的 DataTables 數(shù)據(jù)

PHP
寶慕林4294392 2023-07-01 16:40:05
我正在使用 dataTables 插件來(lái)處理一些數(shù)據(jù)。我使用的是 mysql 數(shù)據(jù)庫(kù)和 php。我可以顯示數(shù)據(jù)庫(kù)中的數(shù)據(jù),但無(wú)法對(duì)其進(jìn)行格式化。我有一些字段是美元金額,我想添加美元符號(hào)和數(shù)千個(gè)逗號(hào)。誰(shuí)能告訴我該怎么做嗎?dataTables 中的列屬性對(duì)我不起作用,因?yàn)榱惺窃?php 文件中定義的。下面的代碼有效,但我無(wú)法格式化我的貨幣列。HTML:<table id="example" class="display desktop" style="">        <thead>            <tr>                <th></th>                <th>Name</th>                <th>Title</th>                <th>Company</th>                <th>2019 Compensation</th>                <th>Median Employee Pay</th>                <th>Type of Position</th>                <th>Stock Price Change (2018-19)</th>                <th>2018 Compensation</th>                <th>Compensation Increase (2018-19)</th>            </tr>        </thead>        <tfoot>            <tr>               <th></th>                <th>Name</th>                <th>Title</th>                <th>Company</th>                <th>2019 Compensation</th>                <th>Median Employee Pay</th>                <th>Type of Position</th>                <th>Stock Price Change (2018-19)</th>                <th>2018 Compensation</th>                <th>Compensation Increase (2018-19)</th>            </tr>        </tfoot>    </table>jQuery:$('#example').DataTable( {    "processing": true,    "serverSide": true,    "ajax": "php/getTables.php"} );來(lái)自 getTables.php 文件的 PHP。這是從教程中復(fù)制的。我剛剛插入了我的數(shù)據(jù)庫(kù)詳細(xì)信息。
查看完整描述

1 回答

?
達(dá)令說(shuō)

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超6個(gè)贊

您可以添加回調(diào)以在 php 或 javascript 中進(jìn)行格式化。


后端解決方案:


$columns = array(

  array( 'db' => 'fortunateID',  'dt' => 0 ),

  array( 'db' => 'name',  'dt' => 1 ),

  array( 'db' => 'title',     'dt' => 2 ),

  array( 'db' => 'company',     'dt' => 3 ),

  array( 'db' => 'compensation2019',     'dt' => 4 ),

  array( 'db' => 'median-employee-pay',

         'dt' => 5,

         'formatter' => function( $d, $row ) {   

            return '$ '. number_format($number, 2);

        } ),

  array( 'db' => 'type-of-position',     'dt' => 6 ),

  array( 'db' => 'stock-price-change-2018-19',     'dt' => 7 ),

  array( 'db' => 'compensation2018',     'dt' => 8 ),

  array( 'db' => 'compensation-increase',     'dt' => 9 )   

);

或者您可以在前端進(jìn)行格式化:


$('#example').DataTable( {

    "processing": true,

    "serverSide": true,

    "ajax": "php/getTables.php"

    "columnDefs" : [

      {

        "targets": [3,4,6,7,8] //currency columns (0 indexed)

        "render": function ( data, type, row, meta ) {

                     let num = parseInt(data); //cast to number

                     let formatted = Number(num.toFixed(1)).toLocaleString();

                     return '$ ' + formatted; 

                 }

      }

 ]

} );


查看完整回答
反對(duì) 回復(fù) 2023-07-01
  • 1 回答
  • 0 關(guān)注
  • 163 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)