何时使用查询参数与矩阵参数?
查询参数:http://example.com/apples?order=random&color=blue
矩阵参数:http:// /example.com/apples;order=random;color=blue
- 什么时候应该使用查询参数而不是矩阵参数?
- 为什么矩阵参数可以用在 URL 中间,而查询参数却不能? 例如:
http://example.com/apples;order=random;color=blue/2006/archive
- 如果矩阵参数是查询参数的超集,为什么不一直使用它们呢?
您可以在此处阅读有关矩阵参数的更多信息:http://www.w3.org/DesignIssues/MatrixURIs。 html
Query parameters: http://example.com/apples?order=random&color=blue
Matrix parameters: http://example.com/apples;order=random;color=blue
- When should one use query parameters versus matrix parameters?
- Why can matrix parameters be used in the middle of a URL but query parameters cannot? For example:
http://example.com/apples;order=random;color=blue/2006/archive
- If matrix parameters are a superset of query parameters, why not use them all the time?
You can read more about matrix parameters here: http://www.w3.org/DesignIssues/MatrixURIs.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
矩阵参数和查询参数之间的差异不仅仅是约定。
主要区别是:
我已经更详细地写了它,并在其中提供了更多参考
查询与矩阵参数
The differences between Matrix parameters and Query Parameters are much more than just convention.
The main differences are:
I've written it up in more detail and with more references in
Query vs. Matrix Parameters