$list = model('weather')->select();<br>
Dump($list);//What is returned at this time is the object generated by model('weather'), and does not enter the select() method of the Query class;<br>
<br>
<br>
$list = model('weather')->where('id',1)->select();<br>
dump($list);//The object returned is still the object generated by model('weather'). The select() method of the Query class that has been entered, at line 1896 $result = new $model($result);, re- The queried data becomes the same as the object generated by model('weather').
Is it because the model cannot use the select method? Use model to use value, column is used normally