Loopback4 - 模型中的 Getter 和 Setter

问题描述

我正在尝试为 LB4 模型创建访问器和修饰符,但它不起作用。

我看到了 this 帖子,但无法在 LB4/TS 中复制它。

如何在 LB4 中创建 getter 和 setter?

这是我的模型和我的尝试:

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

    @model({settings: {strict: false}})
    export class Secret extends Model {

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

      @property({
        type: 'object',})
      _value?: object;

      [prop: string]: any;

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

      getValue() {
        return this.value;
      }

      setValue(value: any) {
        const v = {data: value};
        this._value = v;
      }
    }

    export interface SecretRelations {
      // describe navigational properties here
    }

    export type SecretWithRelations = Secret & SecretRelations;

提前致谢,

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)