我尝试使用 OpenJs Grid 访问 mysql 表。我已经仔细检查了数据库“partsdb”和表“parts”是否存在并且可以从命令行访问。
目前我正在使用必须的基本示例:
成员.php:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Members Page</title>
<script>
$(function() {
$(".parts").grid();
});
</script>
</head>
<body>
<div id="container">
<h1>Members Page</h1>
<table action="ajax.php">
<tr>
<th col="id">Id</th>
<th col="name">Name</th>
</tr>
</table>
<a href='<?php echo base_url()."main/logout" ?>'>Logout</a>
</div>
和 ajax.php
<?php
mysql_connect("localhost","****","*****");
mysql_select_db("partsdb");
require_once("grid.php");
$grid = new Grid("parts");
?>
当我直接在 ajax.php 上运行 php 时,我收到一条错误消息,告诉我:“Unknown column 'parts.' 在“字段列表”中”,并且该表仅显示标题。
我究竟做错了什么?