Maison > développement back-end > Golang > Comment convertir l'interface TypeScript en structure Go ?

Comment convertir l'interface TypeScript en structure Go ?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Libérer: 2024-02-09 10:36:27
avant
1440 Les gens l'ont consulté

如何将 TypeScript 接口转换为 Go 结构体?

php小编新一为您介绍如何将 TypeScript 接口转换为 Go 结构体。当我们在前端使用 TypeScript 开发时,经常会定义接口来描述数据结构。而在后端使用 Go 语言开发时,需要将这些接口转换为对应的结构体。本文将从基本类型、嵌套类型、可选类型等方面详细说明如何进行转换。通过本文的指导,您将能够轻松地将 TypeScript 接口转换为 Go 结构体,提高开发效率。

问题内容

我正在尝试将使用 typescript 构建的对象建模工具转换为 go。

我在 typescript 中拥有的是:

interface schematype {
  [key: string]: {
    type: string;
    required?: boolean;
    default?: any;
    validate?: any[];
    maxlength?: any[];
    minlength?: any[],
    transform?: function;
  };
};

class schema {
  private readonly schema;

  constructor(schema: schematype) {
    this.schema = schema;
  };

  public validate(data: object): promise<object> {
    // do something with data
    return data;
  };
};
Copier après la connexion

这样我就可以这样做:

const itemschema = new schema({
  id: {
    type: string,
    required: true
  },
  createdby: {
    type: string,
    required: true
  }
});
Copier après la connexion

我对 go 的了解仅到此为止:

type SchemaType struct {
  Key       string // I'm not sure about this bit
  Type      string
  Required  bool
  Default   func()
  Validate  [2]interface{}
  Maxlength [2]interface{}
  Minlength [2]interface{}
  Transform func()
}

type Schema struct {
    schema SchemaType
}

func (s *Schema) NewSchema(schema SchemaType) {
    s.schema = schema
}

func (s *Schema) Validate(collection string, data map[string]interface{}) map[string]interface{} {
    // do something with data
    return data
}
Copier après la connexion

我有点卡住了,主要是因为 schematype 接口中的动态“键”,并且不知道如何在 go 中复制它......

解决方法

[key string]: 部分意味着它是一个键类型为 string 的字典。在 go 中,这将是 map[string]<some 类型 >

type schematype map[string]schematypeentry

type schematypeentry struct {
  type      string
  required  bool
  // ...
}
Copier après la connexion

或者,删除 schematype 类型并更改 schema

type Schema struct {
    schema map[string]SchemaTypeEntry
}
Copier après la connexion

现在,关于其他字段,您定义它们时看起来很奇怪,并且很可能不会按照您在此处显示的方式工作。

default 将是一个值,而不是 func() (不返回任何内容的函数)。您不知道该值是什么类型,因此该类型应该是 interface {}any (自 go 1.18 起 - interface {} 的别名)。

transform - 这可能是一个接受值、转换它并返回值的函数 - func(interface{}) 接口{}

不知道 minlengthmaxlengthvalidate 在这种情况下代表什么 - 不清楚为什么它们在 javascript 中是数组,以及如何确定它们在 go 中的长度恰好为 2。

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal