关于mapKeyPath的问题

发布于 2024-12-06 13:31:37 字数 482 浏览 1 评论 0原文

我正在关注 https://github.com/ 上的 Restkit 教程RestKit/RestKit/blob/master/Docs/Object%20Mapping.md 这非常好,因为我认为 RestKit 是一个非常酷的框架。

只有一点我不明白。文档中有一行“文章”,但我看不到文章是在哪里声明的以及它来自哪里。

// Define the relationship mapping [article mapKeyPath:@"author"
toRelationship:@"author" withMapping:authorMapping];

有人可以给黑暗带来一些光明吗?

这是关于如何处理嵌套的 1:n 关系的正确区域吗?

I am following the Restkit Tutorial on https://github.com/RestKit/RestKit/blob/master/Docs/Object%20Mapping.md and this is pretty good because RestKit is a really cool framework - I think.

There is just one point I don't get. In the documentation is a line with "article" but I cannot see where article is declared and where it comes from.

// Define the relationship mapping [article mapKeyPath:@"author"
toRelationship:@"author" withMapping:authorMapping];

Can someone give some light into the darkness?

Is this the right area on how to handle 1:n relationships that are nested?

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

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

发布评论

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

评论(1

暖阳 2024-12-13 13:31:37

该行应该是:

[articleMapping mapKeyPath:@"author" toRelationship:@"author" withMapping:authorMapping];

wiki 上的更新文章进行了更正。

The line should be:

[articleMapping mapKeyPath:@"author" toRelationship:@"author" withMapping:authorMapping];

The updated article on the wiki has the correction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文