问答详情
源自:3-2 使用模型查询数据

我用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;

      

    }



提问者:sunrubben8953 2020-01-24 14:15

个回答

  • 慕梦前来
    2022-08-31 19:27:02

    这个用法都不同的

  • 慕梦前来
    2021-07-28 19:19:41

    all要等所有都完成之后回调