我是Laravel的新手,想要使用按钮重定向到另一个视图。 在单击按钮时,我想重定向到特定的路由功能,然后再转到控制器。 但我犯了一些错误。我做了他们在网上展示但无法纠正的事情。 以下是我的代码。
控制器:
class MyController extends BaseController{
function fromSub(){
return view('from');
}
}
路线:
Route::get('from',array('uses'=>'MyController@fromSub' , 'as' => 'from'));
查看:
<html>
<body>
<button type="button" onclick="window.location='{{ url("from") }}'">BUTTON</button>
</body>
</html>
提前致谢。
答案 0 :(得分:1)
在路线中替换此代码并测试它:
Laravel 5.1 + :
Route::get('from', 'MyController@fromSub')->name('from');
Laravel 5.1 :
Route::get('from', [
'as' => 'from', 'uses' => 'MyController@fromSub'
]);