Rails 关系问题

发布于 2024-10-06 13:58:23 字数 90 浏览 6 评论 0原文

我在用户和频道之间有一个 HABTM 关系,其中用户订阅了该频道。如果用户已经订阅了该频道,我想显示“取消订阅链接”。如何测试用户是否属于channel.users?

I have a HABTM relation ship between users and channels, where the user is subscribed to the channel. I want to show an "unsubscribe link" if the user is already subscribe to the channel. How do I test if the user is part of channel.users?

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

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

发布评论

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

评论(2

白馒头 2024-10-13 13:58:23

致电:

channel.users.include? user

尝试为您要测试的用户 有关详细信息,请参阅有关数组的 Ruby 文档。祝你好运!

try calling:

channel.users.include? user

for the user you want to test. See the Ruby documentation on Arrays for more info. Good luck!

雪落纷纷 2024-10-13 13:58:23

可能有几种不同的方法可以做到这一点,但这里有一个简单的方法:

@user.channels.include? @channel 

=> true/false

There's probably a few different ways to do this, but here's a simple one:

@user.channels.include? @channel 

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