我正在构建一个新的应用程序,我的老板让我生成这种网址结构来搜索不同的项目:
xyz.com/<techs>
xyz.com/<locaions>
xyz.com/<sectors>
正如您所看到的,它会导致在同一级别的根目录上有3个不同的动态网址:
app.get('/', homeController.index);
...
app.get(':locations', locationsController.getLocations);
app.get(':techs', techsController.getTechs);
app.get(':sectors', sectorsController.getSectors);
...
显然尝试这种方法我最终只生成错误,而且从我的观点来看,这是不可能实现的。我错了吗?我的老板非常肯定有可能......如果有,怎么样?
答案 0 :(得分:0)
list3
&#13;