Отношения многие ко многим с uuid возвращаются всегда пустыми - PullRequest
0 голосов
/ 14 мая 2019

Я использую Laravel 5.8 и изменил идентификатор автоинкремента моей модели на uuid. С тех пор у меня возникли некоторые проблемы с отношением «многие ко многим», которое было определено между двумя моими моделями Event и User (с сводной таблицей events_users).

Проблема: Теперь, когда я запрашиваю все элементы, которые объединяют обе таблицы (у меня есть две записи в моей сводной таблице), я всегда возвращаю пустой массив. При отладке sql я вижу, что параметр where не задан:

// Generated sql
select `users`.*, `events_users`.`event_id` as `pivot_event_id`, `events_users`.`user_id` as `pivot_user_id`, `events_users`.`created_at` as `pivot_created_at`, `events_users`.`updated_at` as `pivot_updated_at`
from `users`
inner join `events_users` on `users`.`id` = `events_users`.`user_id`
where `events_users`.`event_id` = ?

// Bindings :
Array
(
    [0] => 
)

Кто-нибудь знает, что мне здесь не хватает?

Вот определение моей модели:

class Event extends Model
{
    protected $primaryKey = 'id';
    protected $keyType = 'string';
    public $incrementing = false;

// here some other model methods, fillable property, etc.


public function users()
{
    return $this
        ->belongsToMany(User::class, 'events_users', 'event_id', 'user_id')
        ->withTimestamps();
}

}

То же объявление для модели пользователя, но с отношением

public function events()
{
    return $this
        ->belongsToMany(Event::class, 'events_users', 'user_id', 'event_id')
        ->withPivot(['created_at', 'updated_at']);
}

Затем я получаю отношения из службы с:

public function getSubscriptions($eventId)
{
    $eventId = 'a1b7c5d6-8f86-44f4-f31a-46e32917d5c0'; // for debug purpose only
    $event = Event::find($eventId);

    foreach ($event->users as $user) {
        print_r($user); die; // It never loops here as its length is 0 but should be 2...
    }

    \DB::listen(function ($query) {
        print_r($query->sql);
        print_r($query->bindings);
        // $query->time
    });

    $subscriptions = $event
        ->users()
        ->get();
    die;

    return $subscriptions;
}

Моя БД содержит записи

1 Ответ

1 голос
/ 14 мая 2019

Проблема была в другом объявлении в моих моделях, где я перечисляю свойство.Я инициализировал там свойство id, которое, вероятно, конфликтует с типом uuid, или я не знаю точно, чем вызвана эта драма ... В любом случае, удаление этой строки позволит приложению работать правильно.

/**
 * @var array
 * Rules used for fields validation
 */
public $rules = array(
    'title'       => 'required|string|max:255',
    'start_date'  => 'required|date|date_format:Y-m-d',
    'end_date'    => 'required|date|date_format:Y-m-d|after_or_equal:start_date',
    'location'    => 'string|max:254',
    'latitude'    => 'numeric',
    'longitude'   => 'numeric'
);

public $id          = "";  // This is the line that create the bug... Remove it and it works !
public $title       = "";
public $start_date  = "";
public $end_date    = "";
public $location    = "";
public $latitude    = "";
public $longitude   = "";
...