我正在尝试在 Rocket 服务路径下打包一个 Vue 应用程序(在 下/admin
)。我写了以下匹配器:
#[get("/admin/<path..>")]
fn admin_panel(_admin: AdminUser, path: Option<PathBuf>) -> Option<NamedFile> {
match path {
Some(admin_path) => match NamedFile::open(Path::new("admin/").join(admin_path)).ok() {
Some(admin_file) => Some(admin_file),
// if the file is not found, we fallback onto admin/index.html, so the client routing can kick in
None => NamedFile::open(Path::new("admin/index.html")).ok()
},
None => NamedFile::open(Path::new("admin/index.html")).ok()
}
}
#[get("/admin/<_path..>", rank = 2)]
fn admin_panel_user(_user: AuthenticatedUser, _path: Option<PathBuf>) -> &'static str {
"Sorry, you must be an administrator to access this page."
}
#[get("/admin/<_path..>", rank = 3)]
fn admin_panel_redirect(_path: Option<PathBuf>) -> Redirect {
Redirect::to(uri!(login::login))
}
但是,有了这个,当我尝试访问时/admin
,我得到一个 404。我需要创建一个只有“/admin”的新路由并重定向到/admin/index.html
,但这并不理想。
我认为将其定义PathBuf
为 anOption
会使它成为可选的,但它似乎不起作用。
当请求既有路径又没有路径时,如何使请求匹配器工作?