0

我不断收到此错误:

Unable to find a route to match the URI: notifications/send

当我尝试访问操作发送通知时,但是当我尝试访问通知时它工作正常..

这是我的代码:

Route::set(
    'notifications', 
    'notifications(<action>)',
    array(
        'action' => 'index|send'
    )
)
->defaults(
    array(
        'controller' => 'notifications', 
        'action' => 'index'
    )
);
4

1 回答 1

1

您缺少一个/.

notifications(<action>)应该notifications(/<action>)

于 2012-12-26T11:18:52.703 回答