Как сделать связь в LoopBack v4 с ключом включения - PullRequest
1 голос
/ 01 октября 2019

https://loopback.io/doc/en/lb4/HasMany-relation.html

Я выполнил эти шаги, а затем попытался получить данные с помощью include, но получил 500.

500 Error: Invalid "filter.include" entries: {"relation":"ranks"}

Я хочу получить игрыобъект с соответствующими рангами.

Модель ранга

import { Entity, model, property, belongsTo } from '@loopback/repository';
import { Game, GameWithRelations } from './game.model';

@model({ settings: { strict: 'filter' } })
export class Rank extends Entity {
  @property({
    type: 'string',
    id: true,
  })
  id?: string;

  @property({
    type: 'string',
  })
  name?: string;

  @property({
    type: 'string',
  })
  shortName?: string;

  @property({
    type: 'string',
  })
  avatar?: string;

  @belongsTo(() => Game)
  gameId: string;

  constructor(data?: Partial<Rank>) {
    super(data);
  }
}

export interface RankRelations {
  game?: GameWithRelations;
}

export type RankWithRelations = Rank & RankRelations;

Модель игры

import { Entity, model, property, embedsMany, hasMany } from '@loopback/repository';
import { Rank, RankWithRelations } from './rank.model';
import { HasMany } from 'loopback-datasource-juggler';

@model({ settings: { strict: 'filter' } })
export class Game extends Entity {
  @property({
    type: 'string',
    id: true,
  })
  id?: string;

  @property({
    type: 'string',
    required: true,
  })
  name?: string;

  @property({
    type: 'string',
  })
  shortName?: string;

  @property({
    type: 'string',
  })
  avatar?: string;

  @hasMany<Rank>(() => Rank, { keyTo: 'gameId' })
  ranks?: Rank[];

  constructor(data?: Partial<Game>) {
    super(data);
  }
}

export interface GameRelations {
}

export type GameWithRelations = Game & GameRelations;

ИграКонтроллер

// in this method
// 500 Error: Invalid "filter.include" entries: {"relation":"ranks"}

 @get('/games/{id}')
  async findById(@param.path.string('id') id: string): Promise<Game> {
    return await this.gameRepository.findById(id, { include: [{ relation: 'ranks' }] });
  }

1 Ответ

1 голос
/ 04 октября 2019

Пожалуйста, запустите ваше приложение с DEBUG=loopback:repository:relation-helpers, таким образом вы получите отладочное сообщение, объясняющее, почему запись filter.include была отклонена.

Вы можете найти код, создающий сообщение об ошибке здесь:

https://github.com/strongloop/loopback-next/blob/97ba7893e253bfc2967ac08e408b211c9b9b7f40/packages/repository/src/relations/relation.helpers.ts#L96-L100

Наиболее вероятная причина: у вашего GameRepository нет зарегистрированного InclusionResolver для отношения ranks.

Пожалуйста, обратитесь к нашему todo-list пример, чтобы увидеть, как зарегистрировать распознаватель включения. Кросс-постинг от https://github.com/strongloop/loopback-next/blob/97ba7893e253bfc2967ac08e408b211c9b9b7f40/examples/todo-list/src/repositories/todo-list.repository.ts#L41-L46:

this.todos = this.createHasManyRepositoryFactoryFor(
  'todos',
  todoRepositoryGetter,
);


this.registerInclusionResolver('todos', this.todos.inclusionResolver);
...