好的,也许我一开始就做错了,但我不确定,我想了解REST应用程序的工作原理。
基本上我使用2个网址指向相同的控制器和相同的方法。
/blog/edit/{{id}}
/blog/add/{{ajax}}
public function showEditIndex($id=null,$ajax=null)
{
$article = new \stdClass();
$article->id = "";
$article->title = "";
$article->content = "";
$article->date = "";
if($id != null){
$tmp = DB::select('select * from blog where id = '.$id);
$article->id = $tmp[0]->id;
$article->title = $tmp[0]->title;
$article->content = $tmp[0]->content;
$article->date = $tmp[0]->date;
}
if($ajax=='ajax'){ //Ajoute ou Modifie
$title = Input::get('title');
$content = Input::get('content');
$date = Input::get('date');
if($date != null){
$query = DB::table('users')
->where('id', 1)
->update(['title' => $title,'content' => $content, $date => date("F j, Y \a\t g:ia")]);
return;
}
$query = DB::table('blog')->insertGetId(
array('title' => $title, 'content' => $content)
);
return $query;
}
return view('blog.add')
->with('article',$article)
->withTitle('Edit Article');
}
所以它在开始时效果很好,但只要我尝试添加或编辑一个以此错误结尾的变量。
找不到列:1054未知栏' ajax'在' where子句' (SQL:select * from blog where id = ajax)
这可能有意义,因为他考虑将{{ajax}}作为值的第一个参数$id
。
那么我如何告诉他具体区分控制器的第一个和第二个参数?
答案 0 :(得分:2)
当Laravel路径只有一个占位符(/blog/edit/{id}
或/blog/add/{ajax}
)时,相应的闭包或控制器方法将始终接收一个参数。因此,与您的期望相反,$ajax
参数永远不会传递给方法,既不是blog/edit
也不是blog/add
。这是两个案例中填充的第一个参数($id
)。查看route parameters上的Laravel文档。
您需要做的是,在两种情况下,将方法逻辑概括为仅使用一个参数(id
或您命名的任何参数),或者将公共逻辑重构为新的私有方法,有两个独立的路线方法,更有意义。
在一天结束时,你会问自己,有两条独立路线做同样工作的原因是什么?