25

我是 Laravel 的新手,我一直在尝试将表“学生”的所有记录存储到一个变量中,然后将该变量传递给一个视图,以便我可以显示它们。

我有一个控制器 - ProfileController,里面有一个函数:

public function showstudents() {
    $students = DB::table('student')->get();
    return View::make("user/regprofile")->with('students',$students);
}

在我看来,我有这个代码:

<html>
    <head>
        //---HTML Head Part
    </head>
    <body>
        Hi {{ Auth::user()->fullname }}
        @foreach ($students as $student)
            {{ $student->name }}
        @endforeach
        @stop
    </body>
</html>

我收到此错误:Undefined variable: students (View:regprofile.blade.php)

4

10 回答 10

26

可以试试这个吗

return View::make("user/regprofile", compact('students')); OR
return View::make("user/regprofile")->with(array('students'=>$students));

同时,您可以像这样设置多个变量,

$instructors="";
$instituitions="";

$compactData=array('students', 'instructors', 'instituitions');
$data=array('students'=>$students, 'instructors'=>$instructors, 'instituitions'=>$instituitions);

return View::make("user/regprofile", compact($compactData));
return View::make("user/regprofile")->with($data);
于 2015-05-13T16:40:13.403 回答
19

用于将单个变量传递给查看。

在您的控制器内部创建一个方法,例如:

function sleep()
{
        return view('welcome')->with('title','My App');
}

在您的路线中

Route::get('/sleep', 'TestController@sleep');

在你看来Welcome.blade.php。您可以回显您的变量,例如{{ $title }}

对于一个数组(多个值)更改,睡眠方法为:

function sleep()
{
        $data = array(
            'title'=>'My App',
            'Description'=>'This is New Application',
            'author'=>'foo'
            );
        return view('welcome')->with($data);
}

您可以访问您的变量,如{{ $author }}.

于 2016-01-04T10:35:47.260 回答
10

将单个或多个变量从控制器传递给视图的最佳且简单的方法是使用compact()方法。

对于将单个变量传递给 view

return view("user/regprofile",compact('students'));

为了将多个变量传递给视图

return view("user/regprofile",compact('students','teachers','others'));

在视图中,您可以轻松地循环遍历变量,

@foreach($students as $student)
   {{$student}}
@endforeach
于 2019-01-14T03:48:25.923 回答
4

你也可以试试这个:

public function showstudents(){
   $students = DB::table('student')->get();
   return view("user/regprofile", ['students'=>$students]);
}

此外,在您的文件中使用此变量view.blade来获取学生姓名和其他列:

{{$students['name']}}
于 2018-12-04T13:37:39.827 回答
1

试试这个代码:

return View::make('user/regprofile', array
    (
        'students' => $students
    )
);

或者,如果您想将更多变量传递到视图中:

return View::make('user/regprofile', array
    (
        'students'    =>  $students,
        'variable_1'  =>  $variable_1,
        'variable_2'  =>  $variable_2
    )
);
于 2015-05-14T08:46:07.743 回答
1

在 Laravel 5.6 中:

$variable = model_name::find($id);
return view('view')->with ('variable',$variable);
于 2018-08-02T13:57:49.893 回答
0
public function showstudents() {
     $students = DB::table('student')->get();
     return (View::make("user/regprofile", compact('student')));
}
于 2019-07-11T12:29:29.300 回答
0

尝试使用此代码:

Controller:
-----------------------------
 $fromdate=date('Y-m-d',strtotime(Input::get('fromdate'))); 
        $todate=date('Y-m-d',strtotime(Input::get('todate'))); 

 $datas=array('fromdate'=>"From Date :".date('d-m-Y',strtotime($fromdate)), 'todate'=>"To 
        return view('inventoryreport/inventoryreportview', compact('datas'));

View Page : 
@foreach($datas as $student)
   {{$student}}

@endforeach
[Link here]
于 2019-09-07T07:04:55.130 回答
0
$books[] = [
            'title' => 'Mytitle',
            'author' => 'MyAuthor,
            
        ];

//pass data to other view
return view('myView.blade.php')->with('books');
or
return view('myView.blade.php','books');
or
return view('myView.blade.php',compact('books'));

----------------------------------------------------


//to use this on myView.blade.php
<script>
    myVariable = {!! json_encode($books) !!};
    console.log(myVariable);
</script>
于 2020-10-25T12:08:30.467 回答
0

在 laravel 8 及更高版本中,您可以通过这种方式进行路由绑定。

public function showstudents() {
    $students = DB::table('student')->get();
    return view("user/regprofile",['students'=>$students]);
}

在视图文件中,您可以像下面这样访问它。

@foreach($students as $student)
        {{$student->name}}
@endforeach
于 2021-06-15T08:54:39.237 回答