在创建好模型以后,访问说没有该方法,如图
看代码
class ManagerModel {
//put your code here
function checkDenglu($name,$pwd){
$info=$this->getByMg_name($name);
show($info);
}
}
看代码少了继承,这种小错误,不容易发现,正确的应该为
class ManagerModel extends Model{
//put your code here
function checkDenglu($name,$pwd){
$info=$this->getByMg_name($name);
show($info);
}
}