英文:
Google app engine + Go + REST service
问题
在GAE + Go中如何实现这个功能:
http.HandleFunc("/ChatGetMessages/{user}/{pass}", ServiceHandler)
然后在"ServiceHandler"中可以访问"user"和"pass"。
谢谢!
英文:
How to do this in GAE + Go
http.HandleFunc("/ChatGetMessages/{user}/{pass}", ServiceHandler)
Then in the "ServiceHandler" have access to "user" and "pass".
Thanks
答案1
得分: 1
你所寻找的功能可以在大猩猩工具包的MUX包中找到。
英文:
The functionality you seek can be found in the MUX package of the gorilla toolkit.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论