0

リレーション オブジェクトでデータ json を投稿できません。

私はmongoDBを使用しています。
table_1、table_2、table_3 の 3 つのテーブルがあります。

私は関係を作成しEmbedsManyEmbedsOne-
table_2 EmbedsOnetable_1。
- table_2 EmbedsManytable_3。

table_1 の項目で table_2 の新しい項目を作成するための create post data json がわかりません。

import { ..., embedsMany, embedsOne } from '@loopback/repository';
import { Model1, Mode1WithRelations } from './model-1.model';
import { Model3, Model3WithRelations } from './model-2.model';
@model({
    settings: {
        strictObjectIDCoercion: true,
        mongodb: {
            collection: 'table_2'
        }
    }
})
export class Model2 extends Entity {
    @property({
        type: 'string',
        id: true,
        mongodb: {
            dataType: 'ObjectID' // or perhaps 'objectid'?
        }
    })
    id?: string;

    @embedsMany(() => Model3)
    model3?: Model3[];

    @embedsOne(() => Model1)
    model1: Model1;
}

export interface Model2Relations {
    // describe navigational properties here
    model3?: Model3WithRelations[];
    model1: Mode1WithRelations;
}

export type Model2WithRelations = Model2 & Model2Relations;

リポジトリ モデル 2

import { DefaultCrudRepository } from '@loopback/repository';
import { Model2, Model2Relations } from '../models';
import { DbDataSource } from '../datasources';
import { inject } from '@loopback/core';

export class Model2Repository extends DefaultCrudRepository<
    Model2,
    typeof Model2.prototype.id,
    Model2Relations
    > {
    constructor(
        @inject('datasources.DB') dataSource: DbDataSource,
    ) {
        super(Model2, dataSource);
    }
}

Json データ投稿

{
  "address": "string",
  "status": 1,
  "createdAt": "2019-08-04T03:57:12.999Z",
  "updatedAt": "2019-08-04T03:57:12.999Z",
  "model1": {
     "id": "5d465b4cd91e484250d1e54b" /* id of exist item in table_1 */
  }
}

コントローラーはによって生成されますlb4 controller

予期される:
- アイテムはEmbedsOne、table_1 のアイテムと共に table_2 に保存されます。

実際:
- エラー:

{
    "error": {
        "statusCode": 422,
        "name": "ValidationError",
        "message": "The `Model2` instance is not valid. Details: `model1` is not defined in the model (value: undefined).",
        "details": {
            "context": "Model2",
            "codes": {
                "project": ["unknown-property"]
            },
            "messages": {
                "model1": ["is not defined in the model"]
            }
        }
    }
}
4

1 に答える 1