Laravel 通过自定义值获取关系
模型 - 用户
id [999]
name [foo]
模型 - 帖子(没有用户外键)
id [1]
unique_key [USR_00000999]
data [bar]
我想通过使用“自定义键”值来获取所有具有相关帖子(一对多)的用户,这可以通过内置雄辩来实现吗?
我只能设法使用 foreach 逐一循环
Post::query()
->where('unique_key', sprintf('USR_%08d', $user_id))
->count();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下这不是内置的laravel ...如果您想知道为什么这是每个人都不常见的事情...
但是,您可以使用范围查询,因此您无需执行
> sprintf
每次...laravel查询范围文档文档
但是我想问,为什么您不只是在邮票上添加
user_id
,而在您的帖子模型上只有一个用于生成unique_key的访问者?从我的角度来看,这将容易得多...update :(请参阅注释)
在邮票表上有可能在帖子表上拥有一个空的user_id吗?
然后在创建用户时填充它?
假设您有一个带有usr_00000999的键的帖子...并且您的用户具有999的ID ...当您创建该用户时,您只需要更新所有带有usr_00000999键的帖子才能使USER_ID的用户为999。 ..
That is not built-into Laravel by default... if you want to know why it's because it's not a common thing that everyone does...
BUT, you can use scope query so you don't need to do the
sprintf
everytime...Laravel Query Scopes Documentation
But I want to ask, why wouldn't you just add
user_id
on your post table and just have an Accessors on your post model for generating the unique_key? That would be much easier on my perspective...Laravel Accessor Documentation
UPDATE: (See Comment)
Is it possible to have an empty user_id on Posts table?
then populate it when the user is created?
say you have a posts with key of USR_00000999... and you have a user with an id of 999... when you create that user you'll just have to update all posts with key of USR_00000999 to have a user_id of 999...