duanhe6799 2014-07-02 06:47
浏览 114
已采纳

Laravel 4:无法生成URL,因为此类路由不存在

Here is my routes.php:

Route::group(['prefix' => 'mine'], function () {
    Route::get('/first', ['as' => 'mine.first', 'uses' => 'MyApp\Controllers\MyController@first']);
});

Here is my HTML/Twig file:

{{ form_open({'action': 'mine.first'}) }}
{{ form_submit('Start') }}
{{ form_close }}

And here is my controller:

class MyController extends BaseController {
    public function first()
    {
        \View::make('stuff.mine.first'); //in folder app/views/stuff/mine
    }
}

The error is "An exception has been thrown during the rendering of a template ("Unable to generate a URL for the named route "MyController@first" as such route does not exist.") in "stuff.show" at line 130."

All the answers on this topic that I've seen are to name the route, but I've already done that.

Also, when I go to the URL manually (localhost/mine/first), the screen is blank even though there is HTML in that file.

Any idea what's going on? Thanks.

  • 写回答

1条回答 默认 最新

  • dpy83214 2014-07-02 06:57
    关注

    mine.first is a route name, not an action.

    Use:

    {{ form_open({'route': 'mine.first'}) }}
    

    As for the view, controller action need to return a Response (the View generates one), so you just need add the proper keyword:

      public function first()
      {
         return \View::make('stuff.mine.first');
      }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部