我用model时候,get()方法可以,但是all()方法不可以!
<?php
namespace app\index\controller;
use think\Controller;
use app\index\model\Swiperlist;
class Index
{
public function swiperList()
{
// $where = function($query){
// $query->field(['id','imgUrl','swiperUrl'])->where('isSwiper','=','1');
// };
$res = Swiperlist::all();
return $res;
}