无法使用不同的操作提交表单 (url)
Can not submit form with different action (url)
我去linkdomain.com/detail/01
在此页面中,我有一个表单,其操作为 domain.com/view-info/profile/1
,方法为 POST
。但是当我提交表单时它显示 Sorry, the page you are looking for could not be found.
注:2 url 不同 namespace
和 middleware
.
路线:Route::post('view-info/{$id}', 'EmployersController@viewProfile')->name('view-profile');
从路由参数中删除 $
:
Route::post('view-info/{id}', 'EmployersController@viewProfile')->name('view-profile');
我去linkdomain.com/detail/01
在此页面中,我有一个表单,其操作为 domain.com/view-info/profile/1
,方法为 POST
。但是当我提交表单时它显示 Sorry, the page you are looking for could not be found.
注:2 url 不同 namespace
和 middleware
.
路线:Route::post('view-info/{$id}', 'EmployersController@viewProfile')->name('view-profile');
从路由参数中删除 $
:
Route::post('view-info/{id}', 'EmployersController@viewProfile')->name('view-profile');