数据未显示

时间:2017-07-24 18:43:50

标签: javascript php mysql json bootstrap-table

我正在尝试使用bootstrap表,php和javascript显示数据库中的数据。我有这段代码:

的index.html

<div class="panel-body">
    <div class="row">
      <div class="col-md-12">
       <table  id="table"
                    data-show-columns="true"
                    data-height="500">
       </table>
      </div>
    </div>
  </div>

的javascript

var $table = $('#table');
     $table.bootstrapTable({
        url: 'list-farmers.php',
        search: true,
        pagination: true,
        buttonsClass: 'primary',
        showFooter: true,
        minimumCountColumns: 2,
        columns: [{
            field: 'landID',
            title: 'ID',
            sortable: true,
        },{
            field: 'location',
            title: 'Location',
            sortable: true,
        },{
            field: 'surf_area',
            title: 'Surface Area',
            sortable: true,

        },{
            field: 'surf_unit',
            title: 'Unit',
            sortable: true,

        },{
            field: 'ownership',
            title: 'Ownership',
            sortable: true,

        },{
            field: 'soiltype',
            title: 'Soil Type',
            sortable: true,                
        }, ],

     });

PHP

include 'dbconnect.php';

$sqltran = mysqli_query($con, "SELECT * FROM land where farmerID = 8")or die(mysqli_error($con));
$arrVal = array();

$i=1;
while ($rowList = mysqli_fetch_array($sqltran)) {

        $name = array(
            'num' => $i,
            'landID'=>$rowList['landID'],
            'location'=> $rowList['location'],
            'surf_area'=> $rowList['surf_area'],
            'surf_unit'=> $rowList['surf_unit'],
            'ownership'=> $rowList['ownership'],
            'soiltype'=> $rowList['soiltype']
          );    


          array_push($arrVal, $name); 
  $i++;     
}
   echo  json_encode($arrVal); 

mysqli_close($con);

代码一定有问题,因为当我运行它时,表和设计就在那里,但是没有数据。

This is the result of the code

这是数据库中应该匹配的数据。

enter image description here

2 个答案:

答案 0 :(得分:2)

  • 如果您确定 db-connect.php 文件中没有错误。 你的list-farmers.php看起来不错,但我怀疑它正在返回一个html页面。

在你的开始标记

之后立即添加到list-farmers.php
header('Content-Type: application/json');

希望这有帮助。

答案 1 :(得分:0)

YES!我找到了原因,

  1. 正如大家所说,MIME_TYPE是application / html。所以我说 header('Content-Type:application / json');

  2. 我的dbconnect.php是这样的:

    $user = 'root';
    $pass = '';
    $db = 'farmingportal';
    $con = mysqli_connect('localhost', $user, $pass, $db);
    if($con){
        echo 'success!';
    }else {
        echo 'not successful';
    }
    
  3. 所以我刚刚删除了if语句..