gpt4 book ai didi

php - Laravel Eloquent 为帖子创建类别

转载 作者:行者123 更新时间:2023-11-30 22:59:40 26 4
gpt4 key购买 nike

我有 3 个表 posts、categories 和 post_category。该帖子有 2 个类别,例如书籍 (1) 和杂志 (2)。我创建帖子并选择两个类别的书籍和杂志 我想在 post_category 表中保存 post_id 和 categories_id 如何将这两个类别插入不同的行以及如何在提交时获取帖子的 ID?顺便说一句,我尝试将 category_id 作为数组添加到帖子表中,但我很难查询该类别的单个 id。

enter image description here

最佳答案

使用插入命令

$param = array(
array('post_id' => '1', 'category_id' => 1),
array('post_id' => '1', 'category_id' => 2),
);

DB::table('post')->insertGetId($param);

注意!它忽略时间戳

LINK HERE

关于php - Laravel Eloquent 为帖子创建类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24653116/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com