Laravelsync() 函数:同步数组和添加透视字段
Laravelsync() 函数允许您管理模型和模型之间的关系将数据透视表字段与它们关联起来。
关联单个数据透视表
正如官方文档中提到的,您可以指定一组 ID 来同步并关联单个数据透视表值与以下 ID 之一:
<code class="php">$user->roles()->sync(array(1 => array('expires' => true)));</code>
关联多个数据透视表行
要将多个数据透视表值与多个 ID 关联,请创建一个 ID 数组作为键和数组数据透视值作为值:
<code class="php">$syncData = [ 1 => ['expires' => true], 2 => ['expires' => false], ... ]; $user->roles()->sync($syncData);</code>
在上面的示例中,每个 ID 都映射到相应的数据透视值数组。
自定义示例
假设您想要为一个事件分配多个发言人,并将每个发言人与“is_speaker”数据透视字段相关联。这是一个示例:
<code class="php">$speakers = (array) Input::get('speakers'); // related ids // Create an array of pivot data with 'is_speaker' set to true for all speakers $pivotData = array_fill(0, count($speakers), ['is_speaker' => true]); // Combine the speakers array with the pivot data array $syncData = array_combine($speakers, $pivotData); $user->roles()->sync($syncData);</code>
以上是如何使用 Laravelsync() 函数同步数组并添加透视字段的详细内容。更多信息请关注PHP中文网其他相关文章!