作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 PHP 和 Laravel 开发一个小项目,我尝试更新我的模型,但我收到一条错误消息:
message "Non-static method Illuminate\\Database\\Eloquent\\Model::update() should not be called statically"
这是我的代码:
AttributeOption::update(array_merge([
'sort_order' => $sortOrder++,
], $optionInputs), $optionId);
最佳答案
您使用的 update()
有误。
YourModel::where(/* some conditions */)
->update([
'field1' => 'value1',
'field2' => 'value2',
...
]);
YourModel::query()
->update([
'field1' => 'value1',
'field2' => 'value2',
...
]);
$model = YourModel::where(/* some conditions */)->first();
$model->update([
'field1' => 'value1',
'field2' => 'value2',
...
]);
// Only accept fillable fields in the update
$model->fill([
'field1' => 'value1',
'field2' => 'value2',
...
])->save();
// Disregard fillable fields in the update
$model->forceFill([
'field1' => 'value1',
'field2' => 'value2',
...
])->save();
关于php - 不应静态调用 Model::update(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69804562/
我是一名优秀的程序员,十分优秀!