Kohana ORM 结果 - 如何显示?

发布于 2024-10-17 20:12:02 字数 488 浏览 0 评论 0原文

也许事情真的很简单,但我遇到了很大的问题... ORM 结果。

我正在使用 with() 加载具有关系的对象。它生成以下查询:

SELECT `article`.`id` AS `article:id`, `article`.`name` AS `article:name`

现在是我的问题...如何在视图中显示文章名称?抱歉问了个愚蠢的问题,我真的不敢相信我在问这个问题。

编辑
这是我的代码:

$activity = $user->activity->with('article')->where('article.status', '=', 1)->find_all()->as_array();

关系肯定是正确的。我可以发誓我今天早上在 Kohana 论坛上看到了类似的东西,但找不到它。

干杯!

Maybe something really simple, I got really big problem with... ORM result.

I'm loading object with relation using with(). It generates following query:

SELECT `article`.`id` AS `article:id`, `article`.`name` AS `article:name`

Now's my question... how to display article name in the view? Sorry for dumb question, I really can't beliebe I'm asking it.

Edit
Here's my code:

$activity = $user->activity->with('article')->where('article.status', '=', 1)->find_all()->as_array();

Relations are correct for sure. I can swear I saw something similar today morning on the Kohana Forums however cannot find it.

Cheers!

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

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

发布评论

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

评论(1

三生池水覆流年 2024-10-24 20:12:02

我还没有测试过,但是如果你这样做的话它会起作用吗:

$activities = $user->activity->with('article')->where('article.status', '=', 1)->find_all();
foreach($activities as $activity) {
  echo $activity->name.'<br />';
}

I haven't tested it but does it work if you do this:

$activities = $user->activity->with('article')->where('article.status', '=', 1)->find_all();
foreach($activities as $activity) {
  echo $activity->name.'<br />';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文