0
我找的,爲什麼我得到這個錯誤:錯誤與我的引導
ErrorException [ Warning ]: Missing argument 1 for Controller_cee::action_fichestandard()
對於這種類型的網址:
http://localhost/mycontroller/myaction/4/12
不過話說把這個在我的引導:
Route::set('fichestandard', '<controller>/<action>/<secteur>/<type>', array('secteur' => '[0-9]+', 'type' => '[0-9]+'))
->defaults(array(
'controller' => 'cee',
'action' => 'fichestandard',
));
而這在行動:
public function action_fichestandard($secteur, $type)
有人會告訴我我犯了什麼錯誤嗎?
準確哪個版本? – matino