douzhuo6931 2018-11-14 18:45
浏览 39
已采纳

Laravel无误地附加数据透视数据

I a have pivot table and a relation on model Product:

public function product_bodies()
{
    return $this->belongsToMany(static::class, 'product_bodies')->withPivot('product_id', 'product_body_id');
}

In the controller when I want to attach data:

    $products = ['sadasdasd', 'asdasda', 'asdasd', 'asdasd']; //for column product_body_id
    $product = Product::create($request->all());

    $product->product_bodies()->attach($products);

I get the error:

General error: 1364 Field 'product_body_id' doesn't have a default value

If I do this:

public function product_bodies()
{
    return $this->belongsToMany(static::class, 'product_bodies', 'product_id', 'product_body_id')->withPivot('product_id', 'product_body_id');
}

Then all works well. But then I can't get pivot data with:

$product->product_bodies;

I get empty items..

How can I fix this problem?

Table product_bodies has 3 columns:

  • id
  • product_id
  • product_body_id

In product_body_id I pass strings.

  • 写回答

1条回答 默认 最新

  • dpevsxjn809817 2018-11-14 22:27
    关注

    I have 3 ideas:

    1. You need to replace static::class to '\App\ProductBody' or ProductBody::class

      public function product_bodies()
      {
          return $this->belongsToMany('\App\ProductBody', 'product_bodies')->withPivot('product_id', 'product_body_id');
      }
      
    2. $products must be array of product bodies ids.

      $productBodiesIds = [1, 55, 66];
      $product->product_bodies()->attach($productBodiesIds);
      
    3. Maybe, sync instead of attach will be a better solution.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab中使用gurobi时报错
  • ¥15 WPF 大屏看板表格背景图片设置
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂