3

我看过一个关于 Laravel 的 youtube 教程。这是代码。我开始学习 Laravel。

 <?php

class Authors_Controller extends BaseController {

public $restful = true;
public function get_index(){

    $view = View::make('authors.index',array('name'=>'Jedi'))->with('age','18');
    $view->location='somewhere';
    $view['favorite'] = 'bacon';    
    return $view;
 }
}
?>

查看代码

<?
 php echo $name;
 echo $age;
 echo $location;
 echo $favorite;
?>

运行 localhost 后,我​​收到一个错误,指出变量未定义。

4

1 回答 1

1

尝试这个..

<?php

class Authors_Controller extends BaseController {

public $restful = true;
public function get_index(){

    $view = View::make('authors.index',array('name'=>'Jedi'))->with('age','18');
    $view->location='somewhere';
    $view['favorite'] = 'bacon';    

   return View::make('foldername/filename')->with('view',$view);
 }
}
?>
于 2015-05-23T06:20:55.260 回答