Laravel 通过自定义值获取关系

发布于 2025-01-20 22:13:03 字数 343 浏览 1 评论 0 原文

模型 - 用户

id [999]
name [foo]

模型 - 帖子(没有用户外键)

id [1]
unique_key [USR_00000999]
data [bar]

我想通过使用“自定义键”值来获取所有具有相关帖子(一对多)的用户,这可以通过内置雄辩来实现吗?

我只能设法使用 foreach 逐一循环

Post::query()
->where('unique_key', sprintf('USR_%08d', $user_id))
->count();

Model - User

id [999]
name [foo]

Model - Post (without User Foreign Key)

id [1]
unique_key [USR_00000999]
data [bar]

I would like to get all user with related posts (one to many) by using "custom key" value, is this possible with build in eloquent?

I only manage to looping using foreach one by one with

Post::query()
->where('unique_key', sprintf('USR_%08d', $user_id))
->count();

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

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

发布评论

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

评论(1

弃爱 2025-01-27 22:13:03

默认情况下这不是内置的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...

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