代码之家  ›  专栏  ›  技术社区  ›  AngularM

如何正确创建角域模型

  •  0
  • AngularM  · 技术社区  · 6 年前

    我想正确地创建一个域模型。

    我下面的尝试在构造函数之外创建属性。 我应该只在构造函数中创建和设置testmodel类的属性吗?这样他们就少了几行代码

    我认为以下尝试是正确的:

    export class TestModel1 {
      public currentPage: number = 0;
      public hasNext: boolean = false;
      public hasPrev: boolean = false;
      public pageSize: number = 0;
      public totalItems: number = 0;
    
      constructor(data: any) {
          this.currentPage = data.currentPage;
          this.hasNext = data.hasNext;
          this.hasPrev = data.hasPrev;
          this.pageSize = data.pageSize;
          this.totalItems = data.totalItems;
      }
    }
    

    它看起来有点大,太多的代码行。

    目前我需要传入一个数据对象,然后映射。 对我来说,使用构造函数更好地实现这一点是不是一个聪明的方法?

    1 回复  |  直到 6 年前
        1
  •  3
  •   Sh. Pavel    6 年前

    如果我们谈到model类,那么它的声明应该如下例所示:

    export class Account {
        constructor(
            public activated: boolean,
            public authorities: string[],
            public email: string,
            public firstName: string,
            public langKey: string,
            public lastName: string,
            public login: string,
            public imageUrl: string
        ) {}
    }

    当然,您不应该在构造函数之外定义值。您可以像示例中那样声明模型类成员,但不定义值:

    export class TestModel1 {
      public currentPage: number;
      public hasNext: boolean;
      public hasPrev: boolean;
      public pageSize: number;
      public totalItems: number;
    
      constructor(data: any = null) {
        if(data !== null) {
          this.currentPage = data.currentPage;
          this.hasNext = data.hasNext;
          this.hasPrev = data.hasPrev;
          this.pageSize = data.pageSize;
          this.totalItems = data.totalItems;
        }
      }
    }

    如果你想声明默认值,我的建议是在构造器中为干净的好代码声明。

    更新:

    export class TestModel1 {
      public currentPage: number;
      public hasNext: boolean;
      public hasPrev: boolean;
      public pageSize: number;
      public totalItems: number;
    
      constructor(data: any = null) {
        if(data !== null) {
          this.currentPage = data.currentPage;
          this.hasNext = data.hasNext;
          this.hasPrev = data.hasPrev;
          this.pageSize = data.pageSize;
          this.totalItems = data.totalItems;
        }
        else {
          this.currentPage = 0;
          this.hasNext = false;
          this.hasPrev = false;
          this.pageSize = 0;
          this.totalItems = 0;
        }
      }
    }

    如果你想违约,那就更好了

        2
  •  0
  •   jiroch    5 年前

    我在这个问题上看到的主要问题是 重复 是的。所有的属性都在构造函数中重复,这违反了干净代码的干燥原则。

    如果要以更简洁的方式填充域对象的新实例,可以执行以下操作:

    export class TestModel1 {
      public currentPage: number;
      public hasNext: boolean;
      public hasPrev: boolean;
      public pageSize: number;
      public totalItems: number;
    
      constructor(data: any) {
          Object.keys(data).forEach(key => {
             this[key] = data[key]
          });
      }
    }
    

    必须确保输入数据对象仅具有正确的属性,这可能很容易,也可能不容易,基于数据源。