菜就菜到问问题都不知道如何问

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对象,如图:
2014-11-14_18:42:25_的屏幕截图.png


为什么compact的参数不是$comments 而是'comments'?
已邀请:

EtenGstar

赞同来自:

向前台传对象用的是字符串,前台获取到的是变量。。。compact('value',$value); 前台用的值是'value'

要回复问题请先登录注册