如何构建同一键的多个值的 URI 查询?
我正在尝试构造一个通过 id 访问我的数据的 URI。
目前,我的 URI 是基于查询的,如下所示:
.../content?parentList=15&type=note
如何构建类似的 URI,以便可以在多个列表中查询注释?
本质上是结合接下来两个 URI 的结果。
.../content?parentList=15&type=note
.../content?parentList=16&type=note
有没有标准的方法来做到这一点?
I'm trying to structure a URI that accesses my data by id.
Currently my URIs are query based like so:
.../content?parentList=15&type=note
How could I structure a similar URI so that I could query for notes in multiple lists?
Essentially combining the results of the next two URIs.
.../content?parentList=15&type=note
.../content?parentList=16&type=note
Is there a standard way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 URI 模板规范(第 3.6 节)的当前草案7),你可以这样做:
According to the current draft of the URI Template spec (Section 3.6 on page 7), you could do:
URI 的查询部分不要求每个参数仅出现一次。只需重复查询即可:
它也是 URI 模板互联网草案的一部分:
变为
The Query portion of the URI doesn't require each parameter to occur only once. Just repeat the query:
It is also part of the URI template internet draft:
becomes