在带有 Go 的 Google App Engine 中,我想使用这样的 URL:http://www.example.com/api/account/123456/product/573832并像这样对待它:http://www.example.com/api/account/{acctId}/product/{prodId}然后在我的处理程序函数中访问acctId和prodId。我该怎么做?
3 回答
慕尼黑8549860
TA贡献1818条经验 获得超11个赞
你在那里:
func httpHandle(httpResponse http.ResponseWriter, httpRequest *http.Request) {
urlPart := strings.Split(httpRequest.URL.Path, "/")
// urlPart[3] is the acctId, urlPart[5] is the prodId
}
- 3 回答
- 0 关注
- 209 浏览
添加回答
举报
0/150
提交
取消