How can I update pivot table on 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 上更新数据透视表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Laravel 上更新数据透视表?
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01