作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一条路线,该路线需要必需的 ID 以及可选的开始日期和结束日期(“Ymd”)。如果省略日期,它们将恢复为默认值。 (比如过去 30 天)并调用 Controller ......让我们说“path@index”
Route::get('/path/{id}/{start?}/{end?}', function($id, $start=null, $end=null)
{
if(!$start)
{
//set start
}
if(!$end)
{
//set end
}
// What is the syntax that goes here to call 'path@index' with $id, $start, and $end?
});
最佳答案
无法从 Route:::get
闭包调用 Controller 。
用途:
Route::get('/path/{id}/{start?}/{end?}', 'Controller@index');
并处理 Controller 函数中的参数:
public function index($id, $start = null, $end = null)
{
if (!$start) {
// set start
}
if (!$end) {
// set end
}
// do other stuff
}
关于laravel - 使用可选参数路由到 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29908836/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!