Laravel链接到行动破坏不起作用

时间:2014-11-18 07:26:06

标签: laravel show destroy

我不知道为什么,但这是一种表演方法。请帮忙。

{{ link_to_action('QuestionsController@destroy', 'Delete', $question->id) }}    

// In my QuestionsController
public function destroy($question_id)
{
    return 'hello';
}

由于我直接链接到删除方法,因此我不必使用带有删除方法的路径的表单。这是对的吗?

1 个答案:

答案 0 :(得分:0)

  

因为你需要带有伪删除http方法的帖子形式,如   docs:laravel.com/docs/4.2/html#opening-a-form。除非你没有   当然使用默认的laravel路线。 - Jarek Tkaczyk

这是解决方案,谢谢!