我有一个Laravel 3应用程序,它有几个REST-ful控制器。
不带参数的控制器(例如处理URL /api/books
的控制器)工作正常,但是当我尝试访问带参数的控制器的URL(例如/api/book/1
)时,它不起作用。但是,如果我将方法名称附加到网址(例如/api/book/index/1
),则 正常工作。
有没有办法不要求在控制器上使用关键字“index”?
其中一个无效控制器的示例 -
<?php
class API_Book_Controller extends Base_Controller {
/**
* Indicates the controller is RESTful
* @var boolean
*/
public $restful = true;
/**
* Fetch a book by ID
* @param integer $id ID number of the book
* @return Response HTTP response
*/
public function get_index($id = null){
$book = Book::find($id);
if(is_null($book)){
return Response::error('404');
}
return Response::eloquent($book);
}
答案 0 :(得分:1)
Route::get('api/book/(:num?)', 'API_Book_Controller@get_index');