Laravel“未定义的方法Illuminate\Database\Query\Builder::attach()”

kyks70gy  于 2023-03-04  发布在  其他
关注(0)|答案(1)|浏览(129)

我尝试在Laravel 4中的数据库播种期间关联相关模型。根据这里的文档,我可以这样做:

$user->roles()->attach(1);

所以,在我的数据库种子中,我运行:

$package = Package::create([
    'name' => $faker->word,
    'summary' => $faker->sentence,
    'base_price' => $faker->randomFloat(2, 200, 10000)
]);

// Attach 1-5 randomly selected items to this package
foreach(range(1, 5) as $index)
{
    $randomItem = Item::orderBy(DB::raw('RAND()'))->first();
    $package->items()->attach($randomItem->id);
}

包的项目已经在这一点上播种,他们播种没有问题。上面的代码从Artisan虽然给出了这一点:

[BadMethodCallException]                                              
Call to undefined method Illuminate\Database\Query\Builder::attach()

有人here似乎认为attach()方法实际上并不存在,文档是错误的,但我发现这很难相信。

TL;DR在Eloquent中创建多对多关系的正确方法是什么?

v8wbuo2f

v8wbuo2f1#

Package模型中的函数items()必须返回BelongsToMany关系才能使用attach()

public function items() {
  return $this->belongsToMany('Item');
}

相关问题