如何在kottpd中正确定义REST资源

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在kottpd中正确定义REST资源相关的知识,希望对你有一定的参考价值。

我正在使用kottpd在Kotlin的REST服务器上工作>

这里是我定义的资源/ URI的摘录:

get("/patients") {req, res -> PatientHandler.doGetAll(req, res)}
post("/patients") {req, res -> PatientHandler.doPost(req, res)}

get("/patients/.*") {req, res -> PatientHandler.doGetOne(req, res)}
post("/patients/.*") {req, res -> PatientHandler.doPatch(req, res)}

get("/patients/.*/cases") {req, res -> CaseHandler.doGetAll(req, res)}
post("/patients/.*/cases") {req, res -> CaseHandler.doPost(req, res)}

[/patients/patients/.*]到目前为止运行良好:例如POST: /patients将患者添加到列表中,GET: /patients/1检索ID为1的患者。

但是,当调用POST: /patients/1/cases向患者1添加病例时,将执行POST: /patients/.*附带的功能。

[我假设(!),.*是通配符,因此在有ID,更多路径或其他内容之间没有区别。

如何定义我的资源/ URI以区分这些情况?或者,如果我的假设不正确:我在做什么错?

我正在使用kottpd在Kotlin的REST服务器上工作这是我定义的资源/ URI的摘录:get(“ / Patients”){req,res-> PatientHandler.doGetAll(req,res)}} post(“ /患者”){req,...

答案

解决方案是将.*替换为d+

以上是关于如何在kottpd中正确定义REST资源的主要内容,如果未能解决你的问题,请参考以下文章

如何在iOS7中正确定位后退按钮

如何在lua中正确定义局部变量并将其引用到XML?

如何在 models.py 文件中正确定义 ManyToMany 字段

如何在struct中正确定义一个函数指针,它以struct为指针?

如何在 react-router-dom 中正确定义后备路由

如何在 Keras 中正确实现自定义活动正则化器?