0
我不斷收到此錯誤:Kohana的路由錯誤
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'
)
);