为了账号安全,请及时绑定邮箱和手机立即绑定

在不更新 Laravel 记录的情况下返回雄辩的更改

在不更新 Laravel 记录的情况下返回雄辩的更改

PHP
慕莱坞森 2022-01-02 20:02:16
8 项目一切正常,到目前为止我有这个代码$item = $item_unit->getItem;$item->item_smallest_unit_cost = $item_unit->item_unit_coast_price;$item->item_smallest_unit_selling_price = $item_unit->item_unit_selling_price;return $item->get();你可以看到,我需要改变item_smallest_unit_cost,并item_smallest_unit_selling_price再没有更新回报的项目原来的数据库,但这个代码回报的项目与旧项目item_smallest_unit_selling_price和item_smallest_unit_cost 我不希望这样做$item = $item_unit->getItem;$item->item_smallest_unit_cost = $item_unit->item_unit_coast_price;$item->item_smallest_unit_selling_price = $item_unit->item_unit_selling_price;$item->update // i dont want to do this but i want to return the item new changesreturn $item->get();任何帮助在这里谢谢
查看完整描述

2 回答

?
繁花如伊

TA贡献2012条经验 获得超12个赞

首先检查数据是否与以下内容不同:


dd($item->item_smallest_unit_cost, $item_unit->item_unit_coast_price);

如果是您预期的数据,则需要保存更新的项目:


$item = $item_unit->getItem;

$item->item_smallest_unit_cost = $item_unit->item_unit_coast_price;

$item->item_smallest_unit_selling_price = $item_unit->item_unit_selling_price;

$item->save(); // You need that

return $item;

这应该有效。


您可以在此处找到更多信息。


查看完整回答
反对 回复 2022-01-02
?
吃鸡游戏

TA贡献1829条经验 获得超7个赞

$item->item_smallest_unit_cost = $item_unit->item_unit_coast_price;

$item->item_smallest_unit_selling_price = $item_unit->item_unit_selling_price;


而不是这种使用以下


$item['item_smallest_unit_cost'] = $item_unit->item_unit_coast_price;

$item['item_smallest_unit_selling_price'] = $item_unit->item_unit_selling_price;


return $item->get();

而只是


return $item; 


查看完整回答
反对 回复 2022-01-02
  • 2 回答
  • 0 关注
  • 112 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信