Как сохранить отношение в @ManyToMany в typeORM - PullRequest
0 голосов
/ 26 февраля 2019

Есть 2 сущности с именами Article и Classification.И отношение их @ManyToMany.

. Вот мой вопрос: как сохранить отношение?

Мой код, как показано ниже:

  @Entity()
    export class Article {
        @PrimaryGeneratedColumn()
        id: number;

        @Column()
        name: string;

        @CreateDateColumn()
        createTime: Date;

        @UpdateDateColumn()
        updateTime: Date;

        @Column({
            type: 'text',
        })
        content: string;

        @Column({
            default: 0,
        })
        likeAmount: number;

        @Column({
            default: 0,
        })
        commentAmount: number;
    }

    @Entity()
    export class Classification {
        @PrimaryGeneratedColumn()
        id: number;

        @CreateDateColumn()
        createTime: Date;

        @UpdateDateColumn()
        updateTime: Date;

        @Column()
        name: string;

        @ManyToMany(type => Article)
        @JoinTable()
        articles: Article[];
    }

Я могу сохранитьArticle и Classification успешно.Но я не уверен, как сохранить их отношение.

Я пытался сохранить отношение с помощью приведенного ниже кода:

async create(dto: ArticleClassificationDto): Promise<any> {
    const article = this.repository.save(dto);
    article.then(value => {
      console.log(value);//console the object article
      value.classification.forEach(item => {
        const classification = new Classification();
        classification.id = item.id;
        classification.articles = [];
        classification.articles.push(value);
        this.classificationService.save(classification);
      })
    });
    console.log(article);
    return null;
  }

И структура данных после публикации, такая как

    {
        "name":"artile name",
        "content":"article content",
        "classification":[{
            "id":4
        },{
            "id":3
        }]
    }

В начале это работает.

enter image description here

Но когда я снова публикую данные, старая запись была заменена, скорее создайте другуюзапись.

enter image description here

Что мне делать дальше?

Просто посмотрите код ниже, пожалуйста.

async create(dto: ArticleClassificationDto): Promise<any> {
    this.repository.save(dto).then(article => {
      article.classification.forEach(item => {
        this.ClassificationRepository.findOne(
          {
            // the privous method is get all the articles from databse and push into this array
            // relations: ['articles'],
            where: { id: item }// now I change the data strcture, just contains id instead of {id}
          }
        ).then(classification => {
          // console.log(article);
          console.log(classification);
          // cmd will show ' UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'push' of undefined' withous below line code. But if I init the array manually,the old record will be replaced again.
          // classification.articles = [];
          classification.articles.push(article);
          this.ClassificationRepository.save(classification);
        });
      })
    })
    return null;
  }

1 Ответ

0 голосов
/ 26 февраля 2019

Как сохранить отношения?

Предположим, у вас есть массив статей, и вы хотите создать отношение к объекту классификации.Вы просто присваиваете массив свойству articles и сохраняете сущность;typeorm автоматически создаст отношение.

classification.articles = [article1, article2];
await this.classificationRepository.save(classification);

Чтобы это работало, сущности статьи должны быть уже сохранены.Если вы хотите, чтобы typeorm автоматически сохранял сущности статьи, вы можете установить cascade на true.

@ManyToMany(type => Article, article => article.classifications, { cascade: true })

Ваш пример

async create(dto: ArticleClassificationDto): Promise<any> {
  let article = await this.repository.create(dto);
  article = await this.repository.save(article);
  const classifications = await this.classificationRepository.findByIds(article.classification, {relations: ['articles']});
  for (const classification of classifications) {
    classification.articles.push(article);
  }
  return this.classificationRepository.save(classifications);
}
...