dongtun3259 2014-07-02 02:19
浏览 36
已采纳

将变量从刀片(视图)传递到路由或控制器

I want to pass the selected item's $id to my controller for doing changing on it .

it's my index.blade.php (view)code

<table>
 @foreach($posts as $p)
<tr>
 <td>{{$p->title}}</td>
 <td>{{substr($p->body,0,120).'[...]'}}</td>

  <td>{{HTML::link('posts_show',' Preview',array($p->id))}}</td>
 <td>{{HTML::link('posts_edit','Edit',array($p->id))}}</td>
 <td>
{{Form::open(array('method'=>'DELETE','url'=>array('posts.delete',$p->id)))}}
 {{Form::submit('Delete')}}
 {{Form::close()}}
</td>
</tr>
@endforeach
</table>

but it doesnt pass $id to my controller's methods.

thanks for your time.

  • 写回答

3条回答 默认 最新

  • dongyun3897 2014-07-03 02:44
    关注

    What you need to do is to set route parameter. Your route should be like that.

     Route::get('post','postController@index');
     Route::get('posts_create',  function (){  return View::make('admin.newPost'); });
     Route::get('posts_show/{id}','postController@show');
     Route::get('posts_edit/{id}','postController@edit');
     Route::post('posts_delete/{id}','postController@destroy');
    

    If you want to use named route {{ Form::open(array('url' => route('posts.edit', $p->id))) }}, you need to set name like that.

     Route::post('posts_edit/{id}', array('uses' => 'postController@edit', 
    'as' => 'posts.edit'));
    

    You can check routing in laravel official documentation.

    Edit

    For now, your form in view look like that.

    {{ Form::open(array('url' => route('posts.edit', $post->id), 'method' => 'POST')) }}
    

    In route,

    Route::post('posts_edit/{id}', array('uses' => 'postController@edit', 
    'as' => 'posts.edit'));
    

    In PostController,

    public function edit($id)
    {
        // do something
    }
    

    I hope it might be useful.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部