当前位置:   article > 正文

laravel 模型 unionALL数据错乱问题

laravel 模型 unionALL数据错乱问题

说明:在laravel中需要合并的两个模型各自关联的模型不同数据无法加载以及可以加载但是出现数据错乱的问题如何解决?

1.前一个模型和后一个模型有相同的关联模型,但是前一个模型的关联模型的数据会覆盖到后一个模型的关联模型中

解决方法尝试

1.先合并模型再加载关联模型直接使用失败,需要自己对合并后的数据进行遍历处理

2.对模型进行按需加载同样会被覆盖

3.使用collection 并且保留分页功能

  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Models\ {Sell,Sre,Borrow,Lend,Record,User,SellInfo,SreInfo,BorrowInfo,LendInfo,Relation,Cost,Borr owRestore};
  5. use Illuminate\Support\Facades\DB;
  6. use Illuminate\Support\Facades\Auth;
  7. use Illuminate\Support\Facades\Storage;
  8. use Illuminate\Support\Facades\Validator;
  9. use App\Notifications\Message;
  10. use App\Http\Controllers\Summary;
  11. use Illuminate\Support\Collection;
  12. use Illuminate\Pagination\LengthAwarePaginator;
  13. use App\Http\Validate\{BorrowAndBorrowRestore as Validate /*as BorrowValidate, BorrowInfo as BorrowInfoValidate,Cost as CostValidate,Lend as LendValidate,LendInfo as LendInfoValidate,Sell as SellValidate,SellInfo as SellInfoValidate,Sre as SreValidate,SreInfo as SreInfoValidate,Order as OrderValidate*/};
  14. class BorrowAndBorrowRestore extends Controller{
  15. //数据记录
  16. public function record(Request $request,Validate $validate,Query $query){
  17. /**************************************************************************************** /
  18. //对于不同关联的模型,在合并查询结果之后再次使用 `with` 方法加载额外的关联模型数据可能会导致数据错乱的情况。这是因为在使用 `with` 方法加载关联数据时,模型会尝试匹配当前模型的关联关系,而合并后的模型可能并不是符合原有关联关系的结构,导致加载的关联数据不正确。
  19. //为了解决这个问题,可以考虑使用手动加载关联数据的方式来避免数据错乱的情况。具体实现如下:
  20. // ```php
  21. // use App\Models\A;
  22. // use App\Models\B;
  23. // use App\Models\C;
  24. // use App\Models\D;
  25. $input=$request->input();
  26. // 加载 A 模型的数据和关联模型 C 的数据
  27. $modelsA = Borrow::with(['userData','recordData','customerData','borrowInfoData','borrowRestoreData'])->select('id','number','state','time','amount','total','user','examine','type','data','customer','borrow_nums','borrow_restore_nums',DB::raw("-1 as nums"))->orderBy('state','asc')->orderBy('id','desc')->paginate($input['size']);
  28. // 加载 B 模型的数据和关联模型 D 的数据
  29. $modelsB = BorrowRestore::with(['userData','recordData','customerData','borrowInfoData','borrowRestoreInfoData','iceData'])->select('id','number','state','time','amount','total','user','examine','type','data','customer',DB::raw("-1 as borrow_nums"),DB::raw("-1 as borrow_restore_nums"),'nums')->orderBy('state','asc')->orderBy('id','desc')->paginate($input['size']);
  30. // 手动加载关联模型数据
  31. $mergedModels = $modelsA->merge($modelsB);
  32. // dd($mergedModels);
  33. $mergedModelsWithRelations = $mergedModels->map(function ($mergedModel) {
  34. if ($mergedModel instanceof Borrow) {
  35. $mergedModel->with(['borrowInfoData','borrowRestoreData']);
  36. } elseif ($mergedModel instanceof BorrowRestore) {
  37. $mergedModel->with('borrowInfoData','borrowRestoreInfoData','iceData');
  38. }
  39. return $mergedModel;
  40. });
  41. // dd($mergedModelsWithRelations);
  42. Collection::macro('paginate', function ($perPage, $page = 1, $options = []) {
  43. $page = $page ?: (Paginator::resolveCurrentPage() ?: 1);
  44. $results = $this->slice(($page - 1) * $perPage, $perPage + 1);
  45. return new LengthAwarePaginator($results, $this->count(), $perPage, $page, $options);
  46. });
  47. $paginatedCollection = $mergedModelsWithRelations->paginate($input['size']);
  48. return $paginatedCollection;
  49. }
  50. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/970493
推荐阅读
相关标签
  

闽ICP备14008679号