gpt4 book ai didi

php - Laravel 更新方法不存在

转载 作者:行者123 更新时间:2023-12-02 05:40:26 24 4
gpt4 key购买 nike

根据文档,我应该能够使用 update() 更新记录 https://laravel.com/docs/5.4/queries#updates ,但我收到错误 Method update does not exist

Client::findOrFail($id)->update($request->all());

知道为什么吗?

最佳答案

我认为这是因为您在单个模型对象上使用了查询生成器的方法。您不能这样做,因为 findOrFail 方法返回一个与查询生成器的方法无关的对象。

这样做:Client::findOrFail($id)->first()->fill($request->all())->save();

关于php - Laravel 更新方法不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46115064/

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