bootstrap表数据url用php填充

时间:2016-05-15 10:49:15

标签: php json twitter-bootstrap

我有一个Bottstrap html表:

<table data-toggle="table" data-url="../../scripts/tags/s_displaytags.php"  data-show-refresh="true" data-show-toggle="true" data-show-columns="true" data-search="true" data-select-item-name="toolbar1" data-pagination="true" data-sort-name="TagName" data-sort-order="desc">
<thead>
  <tr>
  <th data-field="SerialNumber" data-sortable="true">Serial #</th>
  <th data-field="TagName" data-sortable="true">Tag Name</th>
  <th data-field="CreatedBy"  data-sortable="true">Created By</th>
  </tr>
</thead>
</table>

我尝试使用PHP脚本s_displaytags.php填充它。目前正在测试它,所以代码是:

<?PHP
$ArrayValue = array();
$ArrayValue['SerialNumber'] = 1; 
$ArrayValue['TagName'] = 'test'; 
$ArrayValue['CreatedBy'] = 50; 

echo json_encode($ArrayValue);
?>

我的HTML页面加载但表格值未加载。

我目前没有使用任何功能。它只是一个普通的PHP文件,返回一个结果行编码的JSON。

1 个答案:

答案 0 :(得分:0)

所以我刚刚更改了echo json_encode($ ArrayValue); to echo json_encode(array($ ArrayValue));它起作用了。