Laravel 使用 Eloquent 的多对多关系
问题描述
我正在尝试使用 Laravel 创建多对多关系,但我被卡住了.
I'm trying to create a many to many relationship using Laravel, but I am stuck.
这是我当前的表格模型:
Here's my current table model:
专辑
用户图片
albumxuser_image(连接表)
albumxuser_image (junction table)
我希望能够从专辑 xuser_image 表中获取专辑名称.
I want to be able to get the album name from albumxuser_image table.
这是我到目前为止所做的.
Here's what I've done so far.
Album.php 模型
Album.php model
routes.php(我没有使用视图,因为我正在练习)
routes.php (I didn't use view since I'm making a practice)
相册xUserImage.php
AlbumxUserImage.php
这是我得到的错误
推荐答案
您正在尝试对 Collection
模型而不是每个模型调用 AlbumxUserImage()
模型.
You're trying to call AlbumxUserImage()
on a Collection
of models instead of on each individual model.
AlbumxUserImage::all()
返回一个 Collection
模型,您可以将其视为一个数组.您需要遍历集合并在集合中的每个模型上调用 AlbumxUserImage()
.
AlbumxUserImage::all()
is returning a Collection
of models, which you can think of as an array. You need to iterate over the collection and call AlbumxUserImage()
on each model in the collection.
这可能暂时解决您的问题,但您似乎不明白 多对多关系在 Laravel 中有效.
That may solve your problem for now, but you seem to not understand how many-to-many relationships work in Laravel.
我不知道为什么你的数据透视表有一个模型.这不是 Laravel 通常处理多对多关系模型的方式.与您的表的典型多对多关系如下所示:
I don't know why you have a model for your pivot table. That is not how Laravel normally handles models with many-to-many relationships. A typical many-to-many relationship with your tables would look like this:
模型:
用法:
这篇关于Laravel 使用 Eloquent 的多对多关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!