mariadb Laravel - MorphTo关系返回空值

vdzxcuhz  于 2022-11-08  发布在  其他
关注(0)|答案(2)|浏览(176)

我在一个Article模型和3个模型(CompanyGroupUser)之间有一个多态关系,有时会返回null
在90%的情况下,可冠词关系是完全正确的,如下所示:

  1. # relations: array:1 [▼
  2. "articleable" => App\Models\User {#1443
  3. #connection: "mysql"
  4. #table: "users"
  5. #primaryKey: "id"
  6. #keyType: "int"
  7. +incrementing: false
  8. #with: array:2 [▶]
  9. #withCount: []
  10. +preventsLazyLoading: false
  11. #perPage: 15
  12. +exists: true
  13. +wasRecentlyCreated: false
  14. #escapeWhenCastingToString: false
  15. #attributes: array:7 [▶]
  16. #original: array:7 [▶]
  17. #changes: []
  18. #casts: []
  19. #classCastCache: []
  20. #attributeCastCache: []
  21. #dates: array:1 [▶]
  22. #dateFormat: null
  23. #appends: array:1 [▶]
  24. #dispatchesEvents: []
  25. #observables: []
  26. #relations: array:2 [▶]
  27. #touches: []
  28. +timestamps: true
  29. #hidden: array:2 [▶]
  30. #visible: []
  31. #fillable: []
  32. #guarded: array:1 [▶]
  33. #rememberTokenName: "remember_token"
  34. }
  35. ]

但有时(1 / 10 ~),其关系是null

  1. # relations: array:1 [▼
  2. "articleable" => null
  3. ]

但是,我的模型的属性看起来非常好:

  1. # attributes: array:8 [▼
  2. "id" => "e5db380f-9516-491f-bf5d-c13eb2978eac"
  3. "articleable_type" => "App\Models\User"
  4. "articleable_id" => "20e00040-477b-44c5-800f-629a2380afe3"
  5. "title" => "Between yourself and me.' 'That's the most."
  6. "content" => "Alice. 'And ever since that,' the Hatter went on, spreading out the verses the White Rabbit interrupted: 'UNimportant, your Majesty means, of course,' the Mock ▶"
  7. "image_url" => "https://via.placeholder.com/640x480.png/005511?text=non"
  8. "created_at" => "2022-07-27 11:51:01"
  9. "updated_at" => "2022-07-27 11:51:01"
  10. ]

我的数据库确实有记录(从我的users表中导出的JSON):

  1. [
  2. {
  3. "id": "20e00040-477b-44c5-800f-629a2380afe3",
  4. "email": "carolanne.mayer@example.net",
  5. "email_verified_at": "2022-07-27 11:51:01",
  6. "password": "$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi",
  7. "remember_token": "3gRso464ST",
  8. "created_at": "2022-07-27 11:51:01",
  9. "updated_at": "2022-07-27 11:51:01"
  10. }
  11. ]

我的模型如下所示:

使用者:

  1. App\Models\User ..........................................
  2. Database ........................................... mysql
  3. Table .............................................. users
  4. Attributes ................................... type / cast
  5. id unique ..................................... string(36)
  6. email unique, fillable ....................... string(255)
  7. email_verified_at nullable, fillable . datetime / datetime
  8. password fillable, hidden .................... string(255)
  9. remember_token nullable, fillable, hidden .... string(100)
  10. created_at nullable, fillable ........ datetime / datetime
  11. updated_at nullable, fillable ........ datetime / datetime
  12. type appended .................................. attribute
  13. Relations ................................................
  14. profile HasOne .................... App\Models\UserProfile
  15. companies BelongsToMany ............... App\Models\Company
  16. groups BelongsToMany .................... App\Models\Group
  17. page MorphOne ............................ App\Models\Page
  18. articles MorphMany .................... App\Models\Article
  19. notifications MorphMany Illuminate\Notifications\DatabaseNotification

公司名称:

  1. App\Models\Company .......................................
  2. Database ........................................... mysql
  3. Table .......................................... companies
  4. Attributes ................................... type / cast
  5. id unique ..................................... string(36)
  6. name fillable ................................. string(60)
  7. description nullable, fillable ............... text(65535)
  8. created_at nullable, fillable ........ datetime / datetime
  9. updated_at nullable, fillable ........ datetime / datetime
  10. type appended .................................. attribute
  11. Relations ................................................
  12. page MorphOne ............................ App\Models\Page
  13. articles MorphMany .................... App\Models\Article

群组:

  1. App\Models\Group .........................................
  2. Database ........................................... mysql
  3. Table ............................................. groups
  4. Attributes ................................... type / cast
  5. id unique ..................................... string(36)
  6. name fillable ................................. string(60)
  7. description nullable, fillable ............... text(65535)
  8. created_at nullable, fillable ........ datetime / datetime
  9. updated_at nullable, fillable ........ datetime / datetime
  10. type appended .................................. attribute
  11. Relations ................................................
  12. page MorphOne ............................ App\Models\Page
  13. articles MorphMany .................... App\Models\Article

这些型号使用以下HasArticles特性:

  1. <?php
  2. namespace App\Models\Traits;
  3. use App\Models\Article;
  4. use Illuminate\Database\Eloquent\Relations\MorphMany;
  5. trait HasArticles
  6. {
  7. /**
  8. * Return model's articles.
  9. *
  10. * @return MorphMany
  11. */
  12. public function articles(): MorphMany
  13. {
  14. return $this->morphMany(Article::class, 'articleable');
  15. }
  16. }

文章

  1. App\Models\Article .......................................
  2. Database ........................................... mysql
  3. Table ........................................... articles
  4. Attributes ................................... type / cast
  5. id unique ..................................... string(36)
  6. articleable_type fillable .................... string(255)
  7. articleable_id fillable ....................... string(36)
  8. title fillable ................................ string(70)
  9. content fillable .................................... text
  10. image_url nullable, fillable ................. string(255)
  11. created_at nullable, fillable ........ datetime / datetime
  12. updated_at nullable, fillable ........ datetime / datetime
  13. Relations ................................................

Article模型具有以下MorphTo关系:

  1. public function articleable(): MorphTo
  2. {
  3. return $this->morphTo(__FUNCTION__, 'articleable_type', 'articleable_id');
  4. }

我的create_articles_table迁移(向上架构):

  1. Schema::create('articles', function (Blueprint $table) {
  2. $table->uuid('id')->primary();
  3. $table->uuidMorphs('articleable');
  4. $table->string('title', '70');
  5. $table->longText('content');
  6. $table->string('image_url')->nullable();
  7. $table->timestamps();
  8. });

我正在使用以下代码在控制器中进行调试:

  1. $articles = Article::query()
  2. ->with('articleable')
  3. ->inRandomOrder()
  4. ->first();
  5. dd($articles, $articles->articleable?->toArray());

我错过了什么吗?谢谢你的帮助。
环境:

  1. PHP: 8.1
  2. Laravel: 9.22
  3. Nginx
  4. MariaDB 10.7.4
ua4mk5z4

ua4mk5z41#

问题是你需要把first()方法从with('articleable ')中分离出来,我已经检查过了,看起来像是以某种方式修改了查询。不要用with(),而是在得到结果后使用load。

  1. $articles = Article::query()
  2. ->inRandomOrder()
  3. ->first();
  4. $articles->load('articleable');// try to add a check if $articles return null
ee7vknir

ee7vknir2#

原来解决方案是不使用\Str::uuid()(它使用Ramsey\Uuid\Uuid::uuid4())来创建我的模型的UUID,而是使用Ramsey\Uuid\Uuid::uuid6()来代替。没有更多的问题,现在一切都很好。

相关问题