使用 Datamapper 检查一个对象是否与另一个对象相关

发布于 2024-11-27 00:02:13 字数 835 浏览 0 评论 0原文

使用 Codeigniter 和 Datamapper:我有 2 个表:标签客户端< /强>。客户端可以有很多标签,标签可以有很多客户端。我正在使用单独的联接表来保存关系。

我有一个用于管理单个标签的页面,我在其中迭代每个客户端,并想要检查每个客户端是否与此标签相关。

下面代码中的 ?????? 确定是否选中该复选框,如果客户端有该标签,则应为 TRUE,如果客户端有该标签,则应为 FALSE不是。

<h2>Manage Tag: <?php echo $tag->name; ?></h2>

<?php foreach ($clients as $client): ?>

    <label>
        <?php echo form_checkbox('client_id[]', $client->id, ????); ?>
        <?php echo $client->name; ?>
    </label>

<?php endforeach; ?>

如何使用 数据映射器

Using Codeigniter and Datamapper: I have 2 tables: tags and clients. Clients can have many tags, tags can have many clients. I am using a separate join table to save the relationships.

I have a page for managing an individual tag, where I am iterating through every client, and want to check if each one is related to this tag.

The ???? in the code below determines if the checkbox is checked, it should be TRUE if the client has the tag, FALSE if not.

<h2>Manage Tag: <?php echo $tag->name; ?></h2>

<?php foreach ($clients as $client): ?>

    <label>
        <?php echo form_checkbox('client_id[]', $client->id, ????); ?>
        <?php echo $client->name; ?>
    </label>

<?php endforeach; ?>

How can I check if $client is related to $tag in this loop with Datamapper?

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

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

发布评论

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

评论(1

a√萤火虫的光℡ 2024-12-04 00:02:13

怎么样

$client->is_related_to($tag)

$client->is_related_to('tag', $tag->id)

参见http://datamapper.wanwizard.eu/pages/count.html#is_lated_to

请注意,这将触发额外的 count() 查询,您可能最好获取 $tag->clients,然后检查循环是否

isset($tag->clients->all[$client->id])

How about

$client->is_related_to($tag)

or

$client->is_related_to('tag', $tag->id)

See http://datamapper.wanwizard.eu/pages/count.html#is_related_to

Note that this will fire additional count() queries, you might be better of fetching $tag->clients, and then check in your loop if

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