Проблема с функцией создания внутри Loopback Framework - PullRequest
0 голосов
/ 02 апреля 2019

У меня есть эта модель

import {Entity, model, property} from '@loopback/repository';

@model()
export class Coupon extends Entity {
  @property({
    id: true,
    type: 'string',
    required: false,
    mongo: {
      columnName: '_id',
      dataType: 'ObjectID',
    },
  })
  id: string;

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

  @property({
    type: 'number',
    required: true,
  })
  maximumUses: number;

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

  @property({
    type: 'number',
    required: true,
  })
  amount: number;

  @property({
    type: 'number',
    required: true,
  })
  maximumUsesPerPerson: number;

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

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

  @property({
    type: 'number',
    required: true,
  })
  currentTotalUses: number;

  @property({
    type: 'array',
    itemType: 'string',
  })
  certainDays?: string[];

  @property({
    type: 'array',
    itemType: 'string',
  })
  certainHours?: string[];

  @property({
    type: 'boolean',
    required: true,
  })
  valid: boolean;

  @property({
    type: 'array',
    itemType: 'string',
  })
  clients?: string[];

  @property({
    type: 'disabled',
    required: true,
  })
  disabled: boolean;

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

хранилище для модели

import {DefaultCrudRepository} from '@loopback/repository';
import {Coupon} from '../models';
import {TestDataSource} from '../datasources';
import {inject} from '@loopback/core';

export class CouponRepository extends DefaultCrudRepository<
  Coupon,
  typeof Coupon.prototype.id
> {
  constructor(
    @inject('datasources.test') dataSource: TestDataSource,
  ) {
    super(Coupon, dataSource);
  }
}

теперь следующая функция должна хорошо работать

await this.couponsRepo.create({ name: 'string',
    maximumUses: 0,
    maximumUsesPerPerson: 0,
    amount: 0,
    validFrom: 'string',
    validTo: 'string',
    type: 'percentage',
    valid: true,
    currentTotalUses: 0,
    disabled: false });

но выдает эту ошибку

ReferenceError: g не определено при новом отключенном (eval at createModelClassCtor (../LBIssue/lbissue/node_modules/loopback-datasource-juggler/lib/model-builder.js:678:21),: 10: 27)

чтобы просто выдать эту ошибку, создайте пустой проект loopback 4 затем поставьте модель купона = с кодом, который я предоставил

1 Ответ

0 голосов
/ 05 апреля 2019

В определении модели имеется ошибка.

См. Этот тип

@property({
    type: 'disabled',
    required: true,
  })
  disabled: boolean;

нельзя отключить.Это должно быть

@property({
        type: 'boolean',
        required: true,
      })
      disabled: boolean;
...