Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个社交网络类型的应用程序,并且想要一个像订阅这样的功能。
例子:
如果用户 A 订阅了用户 B,那么用户 A 应该只能查看用户 B 发布的帖子,而不能查看其他用户发布的帖子。
在我看来,将有一个订阅表,其中包含 ID、UserFrom、UserTo 字段。
现在我被困在一个条件允许用户只查看订阅用户的帖子。
需要一点帮助请...
获取登录用户订阅beforeFilter功能的所有用户 ID 列表,以便您可以在控制器中的任何位置使用它。
beforeFilter
例如: UserA subscribe UserB ,UserD 然后签到post view action If post author id is in subscribe array then allow to view else redirect to another action with message。
UserA subscribe UserB ,UserD
post view action If post author id is in subscribe array then allow to view else redirect to another action with message
谢谢