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

2023-03-03php开发问题
0

本文介绍了如何在 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 上更新数据透视表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17