gpt4 book ai didi

laravel - 如果不存在则插入新记录,如果存在则不更新,laravel eloquent

转载 作者:行者123 更新时间:2023-12-02 11:10:13 25 4
gpt4 key购买 nike

如果记录不存在,我是否应该使用create方法插入新记录,如果存在则不更新记录?谢谢。

最佳答案

使用 firstOrCreate 方法:

$user = User::firstOrCreate(['name' => 'John Doe']);

如果您想知道用户是否已创建或已获取,请检查 wasRecentlyCreated 属性:

if ($user->wasRecentlyCreated) {
// "firstOrCreate" didn't find the user in the DB, so it created it.
} else {
// "firstOrCreate" found the user in the DB and fetched it.
}

关于laravel - 如果不存在则插入新记录,如果存在则不更新,laravel eloquent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33930164/

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