gpt4 book ai didi

php - 如何从 JSON 在 Eloquent ORM 中保存具有相关记录的模型

转载 作者:可可西里 更新时间:2023-11-01 08:47:05 25 4
gpt4 key购买 nike

目标

Eloquent 模型 AlumSchool 具有多对多关系。一个校友可以去了很多学校,一个学校可以有很多校友。

使用 Eloquent,我可以像这样检索和输出她的学校的校友:

$alums = Alum::with('schools')->get();
echo $alums->toJson();

AngularJS 然后在表格中显示明矾。每行都有一个编辑按钮,显示一个对话框,其中包含校友可能就读的所有学校的复选框。选中复选框会将学校添加到校友的 schools 数组中,取消选中复选框会将其删除。

到目前为止一切顺利。

问题

将数据 POST 或 PUT 返回服务器是出错的地方。发送到服务器的 JSON 如下所示:

{
"id":1,
"name":"John Doe",
"schools": [
{
"id":1,
"name":"School A"
},
{
"id":2,
"name":"School B"
}
]
}

Alum 记录保存,但 Eloquent 不知道如何处理学校数组。

尝试的解决方案

来自 Laravel's documentation on Inserting Related Models in Eloquent , 好像保存相关记录的方式是用attachattach 采用 ID 数组,而不是对象,因此我尝试以下操作:

// Get the IDs of the schools that this user attended
$schoolIds = [];
foreach ($obj->schools as $school) {
$schoolIds[] = $school->id;
}

$alum->schools()->attach($schoolIds);
$alum->save();

行得通;明矾和他的学校被保存到数据库中。但随之而来的是一个新问题:当学校未从校友的学校列表中选中时,如何分离学校。我想我可以获取所有学校的 ID,拼接出已检查学校数组中的 ID,然后将结果传递给 detach — 但我希望有比这更优雅的方法。

从 JSON 中保存记录及其相关记录的最佳方式是什么?

最佳答案

有趣的是,发帖似乎会直接引导您自行寻找解决方案。我在 Eloquent 文档中错过了 sync:

The sync method accepts an array of IDs to place on the pivot table. After this operation is complete, only the IDs in the array will be on the intermediate table for the model[.]

attach 替换为 sync 后,只有选中的学校会保存在 alum 的学校列表中。

不过,我仍然很好奇是否有更好的方法直接从 JSON 保存相关记录。欢迎提供更多意见。

关于php - 如何从 JSON 在 Eloquent ORM 中保存具有相关记录的模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26243203/

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