在像这样的链接中:http://localhost:8080/api/departments/ЛЮБОЕ ЧИСЛО/edit?
可以是任何数字
具体是多少我不知道。我以为我可以用正则表达式来写,但没有成功
//http://localhost:8080/api/departments/10/edit?
if (uri === `http://localhost:8080/api/departments/` + /\d/ + `/edit?`) {
return new EditDepartmentPage();
}
if - 返回假。是否可以用正则表达式或其他方式编写它?
我用纯js写