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

How can I update pivot table on laravel?(如何在 Laravel 上更新数据透视表?)
本文介绍了如何在 Laravel 上更新数据透视表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我使用 Laravel 5.3

I use laravel 5.3

我有 3 个表:表产品、表类别和表 products_categories

I have 3 table : table product, table category and table products_categories

表产品:id、名称等

表格类别:id、名称等

table category : id, name, etc

表 products_categories : id, product_id, category_id

table products_categories : id, product_id, category_id

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

In model product, I have method this :

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

所以 1 个产品有多个类别

So 1 product have many category

我的代码是这样的

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

For example $param['category'] like this :

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

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

$product_id = 1

$product_id = 1

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

它用于在数据透视表上添加类别并且它有效

It used to add category on the pivot table and it works

但是如果我更新数据透视表上的类别,它就不起作用

But if I update category on the pivot table, it does not work

我是这样尝试的:

比如之前这样编辑过的分类

For example the category previously edited like this

$param['category'] =

$param['category'] =

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

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

$product_id = 1

$product_id = 1

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

And the code to update data on the pivot table like this :

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

未成功更新字段类别

我该如何解决?

推荐答案

尝试使用 sync() 函数

Try to use the sync() function

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

这篇关于如何在 Laravel 上更新数据透视表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Warning: mysqli_query() expects at least 2 parameters, 1 given. What?(警告:mysqli_query() 需要至少 2 个参数,1 个给定.什么?)
INSERT query produces quot;Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean givenquot;(INSERT 查询产生“警告:mysqli_num_rows() 期望参数 1 为 mysqli_result,给出布尔值;)
prepared statements - are they necessary(准备好的陈述 - 它们是否必要)
Do I need to escape my variables if I use MySQLi prepared statements?(如果我使用 MySQLi 准备好的语句,是否需要转义我的变量?)
Properly Escaping with MySQLI | query over prepared statements(使用 MySQLI 正确转义 |查询准备好的语句)
Is it possible to use mysqli_fetch_object with a prepared statement(是否可以将 mysqli_fetch_object 与准备好的语句一起使用)