在创建好模型以后,访问说没有该方法,如图
看代码
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); } }
时间: 2024-10-25 19:03:54