gpt4 book ai didi

php - Laravel Controller 不传递变量来查看

转载 作者:搜寻专家 更新时间:2023-10-31 21:30:36 25 4
gpt4 key购买 nike

我看过一个关于 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;
?>

运行本地主机后,我收到一条错误消息,指出变量未定义。

最佳答案

试试这个..

<?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);
}
}
?>

关于php - Laravel Controller 不传递变量来查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30409526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com