页面中有一个评论表单http://localhost/posts/post_id
当我提交表单时,我想将post_id
值附加到,Input::all()
因为表单不包含post_id
. 并且评论表中 post_id 的列名被称为post_id
,创建评论的路线是comments.store
任何想法?谢谢!
问问题
5665 次
3 回答
5
我认为这应该有效:Input::merge(array('post_id' => $post_id));
于 2013-05-27T14:20:14.150 回答
0
这个怎么样...
function store($post_id)
{
$data = Input::all();
$comment = new Comment($data);
$comment->post_id = $post_id;
$comment->save();
}
于 2013-05-27T13:40:08.730 回答
0
只需使用这个:
Request::instance()->query->set('key','value');
于 2015-05-25T11:30:01.613 回答