Vue js LARAVEL 8路由
当我尝试在VUE路由器中添加路由路径(例如:
)时,我仍然感到困惑{
path: '/admin/blog/archived_blogs',
name: 'ArchivedBlogs',
meta: { title: 'Archived Blog' },
component: ArchivedBlog
},
除删除出现错误的位置外,其他一切工作正常
405(不允许使用方法)
此路由不支持POST方法。支持的方法: 去拿吧,海德。
我所能做的就是将路径更改为
{
path: '/admin_blog_archived_blogs',
name: 'ArchivedBlogs',
meta: { title: 'Archived Blog' },
component: ArchivedBlog
},
我当前使用的Web路由是
Route::get('/{slug?}', [HomeController::class, 'index'])->where('slug', '[/w.-]*')->name('home');
有什么建议吗?
解决方案
您还需要使用any()
来捕获所有方法
喜欢
Route::any('/{slug?}', [HomeController::class, 'index'])->where('slug', '[/w.-]*')->name('home');
对于SPA,我使用
Route::any('{all}', [HomeController::class, 'index'])
->where('all', '^(?!api).*$')
->where('all', '^(?!storage).*$');
这样,所有web
相关的路由都会处理Vuejs
和storage
或api
路由Handel by laravel
相关文章