我正在测试按钮
Button onclick="window.location ='{{ route('books.index') }}'
返回索引页但测试另一个按钮
onclick="window.location ='{{ route('books.index2') }}'
返回错误消息( ErrorException Route [books.index2] not defined
)
功能
public function index() {
return View::make('books/bookindex');
}
public function index2() {
return View::make('books/bookindex');
}
routes.php
中的功能Route::resource('books', 'BookController');
为什么某些功能正在运行但是没有?可以帮助一下。谢谢。