时间:2021-07-01 10:21:17 帮助过:20人阅读
$list = model('weather')->select();
dump($list);//这个时候返回的是model('weather')生成的对象,并且没有进入Query类的select()方法;
$list = model('weather')->where('id',1)->select();
dump($list);//返回的还是model('weather')生成的对象,已经进入的Query类的select()方法,在1896行的 $result = new $model($result);时候,重新将查询出来的数据变成了和model('weather')生成的对象一样的了,
是model无法使用select方法么? 用model 使用value,column是正常使用的