如何在 laravel 上更新数据透视表 table?

How can I update pivot table on laravel?

我用laravel 5.3

我有 3 个 table:table 产品,table 类别和 table products_categories

table 产品:id、名称等

table 类别:id、姓名等

table products_categories : id, product_id, category_id

在模型产品中,我有这样的方法:

public function categories()
{
    return $this->belongsToMany(Category::class, 'products_categories', 'product_id', 'category_id')
                ->withPivot('id')
                ->withTimestamps();
}

所以 1 个产品有多个类别

我的代码是这样的

例如 $param['category'] 像这样:

Array ( ['category1'] => 4 ['category2'] => 11 ['category3'] => 18 )

$product_id = 1

foreach ($param['category'] as $category) {
    Product::find($product_id)
        ->categories()
        ->attach(
            $category, 
            []
        );
}

它曾经在枢轴上添加类别 table 并且有效

但是如果我更新枢轴上的类别 table,它就不起作用

我这样试:

例如之前编辑的分类

$参数['category'] =

Array ( ['category1'] => 5 ['category2'] => 12 ['category3'] => 19 )

$product_id = 1

更新数据透视表 table 的代码如下:

foreach ($param['category'] as $category) {
    Product::find($product_id)
           ->categories()
           ->wherePivot('product_id', $product_id)
           ->updateExistingPivot($category, ['category_id' => $category]);
}

未成功更新字段类别

我该如何解决?

尝试使用 sync() function

Product::find($product_id)->categories()->sync($array_of_categories_id)