我无法使用关系对象发布数据 json。
我使用 mongoDB。
我有 3 个表:table_1、table_2、table_3。
我创建关系EmbedsMany
和EmbedsOne
:
- table_2 EmbedsOne
table_1。
-EmbedsMany
表_2 表_3。
我不知道创建发布数据 json 以使用 table_1 的项目创建 table_2 的新项目。
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
预期:
- 项目成功保存到 table_2 中,EmbedsOne
项目为 table_1。
实际:
- 错误:
{
"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"]
}
}
}
}