本文介绍了何时使用@QueryParam vs @PathParam的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我不是问这里已经提出的问题:
和,看看哪些方法可以很好地适用于您的用例。
Some REST APIs use query strings for filtering, pagination and sorting, but Since REST isn't a strict standard I'd recommend checking some REST APIs out there such as github and stackoverflow and see what could work well for your use case.
我建议在路径中放置任何必需的参数,任何可选参数当然应该是查询字符串参数。在尝试编写匹配不同组合的URL处理程序时,在URL中放置可选参数最终会变得非常混乱。
I'd recommend putting any required parameters in the path, and any optional parameters should certainly be query string parameters. Putting optional parameters in the URL will end up getting really messy when trying to write URL handlers that match different combinations.
这篇关于何时使用@QueryParam vs @PathParam的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!