数据表名:machine_base 使用在线命令行生成控制器名:machine/base 数据表设计: 使用上面的格式,可以使用增加方法响数据库增加数据。 数据表中有多行数据但展示为空。 将library/traits/Backend.php中的方法复制到控制器中返回条件$where
public function index()
{
$this->request->filter(['strip_tags', 'trim']);
if ($this->request->isAjax()) {
if ($this->request->request('keyField')) {
return $this->selectpage();
}
list($where, $sort, $order, $offset, $limit) = $this->buildparams();
$list = $this->model
->where($where)
->order($sort, $order)
->paginate($limit);
$result = array("total" => $list->total(), "rows" => $list->items());
return json($result);
}
return $this->view->fetch();
}
返回数据展示,条件为空但就是查不出数据
多次尝试,多次修改数据表设计,发现只要删除或修改数据表中的machine字段,一切回归正常。真是够离谱的。 最终数据表设计,machine变为machines正常展示。 我的猜测可能数据表字段不能和控制名字重复,只是猜测。没有多次测试。如果有人试过了说一下
|