如何添加到 oData 中的嵌套集合

发布于 2024-11-10 13:29:48 字数 152 浏览 1 评论 0原文

如果我有一个集合 /Events(123)/Registrants,并且我想向该集合添加一个 Person,我会如何做类似的事情。 我尝试向该网址POST一个Person,但收到错误。

If I had a collection /Events(123)/Registrants, and I wanted to add a Person to that collection, how would I do something like that.
I tried POSTing a Person to that url, but I get an error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方。的韩爷 2024-11-17 13:29:49

我真愚蠢,没有阅读 oData 规范

POST /OData/OData.svc/Events(123)/$links/Registrants HTTP/1.1
Host: services.odata.org
DataServiceVersion: 1.0
MaxDataServiceVersion: 2.0
Content-Length: 159
Content-Type: application/xml
<uri xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices">
http://services.odata.org/OData/OData.svc/Person(10)
</uri>

Stupid me for not reading the oData specification.

POST /OData/OData.svc/Events(123)/$links/Registrants HTTP/1.1
Host: services.odata.org
DataServiceVersion: 1.0
MaxDataServiceVersion: 2.0
Content-Length: 159
Content-Type: application/xml
<uri xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices">
http://services.odata.org/OData/OData.svc/Person(10)
</uri>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文