php,laravel5
后端开发-php教程
在laravel官方文档中有这么一个路由:热血三国源码,远程连接到ubuntu,通用网络爬虫特点,perl/php,seo求职模板lzw
Route::group(['domain' => '{account}.myapp.com'], function () { Route::get('user/{id}', function ($account, $id) { // 这里如何写,才能跳转到控制器呢? });});
注释的地方怎么写才能跳转到控制器呢,其实也就是说路由里面的function中,如何跳转到控制器,例如:跳转到MainController的index方法
养生网源码,vscode怎么打开桌面文件,ubuntu无法黏贴,tomcat帮助文档下载,python爬虫休眠,php判断数字相等,吕梁seo推广公司有哪些,设置时间发邮件网站源码,织梦模板首页链接怎么修改lzw
超级评分聚物源码,eric6 vscode,ubuntu 下边栏,tomcat 性能探针,sqlite数据库插入,雨滴插件制作,tp框架的前端目录在哪里,如何爬虫车来了公交数据,php大于或等于,琼海seo推广优化,国外的源码网站,绿色环保网页设计,支付宝模版psd模板lzw
回复内容:在laravel官方文档中有这么一个路由:
Route::group(['domain' => '{account}.myapp.com'], function () { Route::get('user/{id}', function ($account, $id) { // 这里如何写,才能跳转到控制器呢? });});
注释的地方怎么写才能跳转到控制器呢,其实也就是说路由里面的function中,如何跳转到控制器,例如:跳转到MainController的index方法
Route::group(['domain' => '{account}.myapp.com'], function () { Route::get('user/{id}', 'MainController@index');});
跳转到MainController的index方法。
index方法似乎应该写成function ($account,$id){}
可以用make方法:
Route::group(['domain' => '{account}.myapp.com'], function () { Route::get('user/{id}', function ($account, $id) { $app = app(); // 初始化app $controller = $app->make('MyController'); // 调用控制器 return $controller->callAction('index', $parameters); //调用控制其方法并传参 });});