菜就菜到问问题都不知道如何问
public function listComment(){
$comments=Comment::orderBy('id','desc')->paginate(10);
$this->layout->title='Comment Listings';
$this->layout->main=View::make('dash')->nest('content','comments.list',compact('comments'));
}
刚才自己试着print_r(compact($comments))是一个空数组, 如果我print_r(compact('comments'))也是一个数组 不过数组内容是一个paginator对象,如图:
为什么compact的参数不是$comments 而是'comments'?
$comments=Comment::orderBy('id','desc')->paginate(10);
$this->layout->title='Comment Listings';
$this->layout->main=View::make('dash')->nest('content','comments.list',compact('comments'));
}
刚才自己试着print_r(compact($comments))是一个空数组, 如果我print_r(compact('comments'))也是一个数组 不过数组内容是一个paginator对象,如图:
为什么compact的参数不是$comments 而是'comments'?
1 个回复
EtenGstar
赞同来自: