我正在尝试使用Grapevine创建RESTFUL API。 我想创建动态路径,例如
[RestRoute(PathInfo = "api/eshare/getcustomersbyname/{namepart}", HttpMethod = HttpMethod.GET)]
目的是搜索存在{namepart}的所有客户并返回json。
在浏览器中输入http://localhost:2000/api/eshare/getcustomersbyname/bio时,我总是得到:Route not Found for GET api/eshare/getcustomersbyname
寻求帮助
答案 0 :(得分:0)
您真的很亲密。在样式中使用方括号而不是花括号。
[RestRoute(PathInfo = "api/eshare/getcustomersbyname/[namepart]", HttpMethod = HttpMethod.GET)]