如何在VF页面中显示子对象字段 通过SFDC中的Parent对象查询
我想通过父对象的关系查询子对象。并且我需要将这些值传递到 VF 页面。我怎样才能实现这一点。
I want to query child object through relationship from Parent object .And i need to pass those values to a VF page .How can i achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过子查询查询子字段,如下所示:
将结果存储在父对象列表中:
然后您可以使用如下所示循环遍历页面中的子对象:
You can query child fields through a subquery like so:
Store the results in a list of the parent objects:
Then you can then loop over the children in the page with something like this: