第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何將 TypeScript 接口轉(zhuǎn)換為 Go 結(jié)構(gòu)?

如何將 TypeScript 接口轉(zhuǎn)換為 Go 結(jié)構(gòu)?

Go
慕村9548890 2023-03-21 10:27:42
我正在嘗試將使用 TypeScript 構(gòu)建的對(duì)象建模工具轉(zhuǎn)換為 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;  };};這樣我就可以做:const itemSchema = new Schema({  id: {    type: String,    required: true  },  createdBy: {    type: String,    required: true  }});我對(duì) Go 的了解只有這么遠(yuǎn):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}我有點(diǎn)卡住了,主要是因?yàn)?SchemaType 接口中的動(dòng)態(tài)“鍵”,我不確定如何在 Go 中復(fù)制它......
查看完整描述

1 回答

?
DIEA

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超3個(gè)贊

該[key string]:部分表示它是一個(gè)鍵為 type 的字典string。在 Go 中,這將是一個(gè)map[string]<some type>.


type SchemaType map[string]SchemaTypeEntry


type SchemaTypeEntry struct {

  Type      string

  Required  bool

  // ...

}

或者,刪除SchemaType類型并更改Schema:


type Schema struct {

    schema map[string]SchemaTypeEntry

}

現(xiàn)在,關(guān)于其他字段,您定義它們時(shí)看起來很奇怪,而且它很可能不會(huì)像您在此處顯示的那樣工作。


Default將是一個(gè)值,而不是一個(gè)func()(不返回任何內(nèi)容的函數(shù))。你不知道值是什么類型,所以類型應(yīng)該是interface {}or any(因?yàn)?Go 1.18 - 的別名interface {})。


Transform- 這可能是一個(gè)接受一個(gè)值、轉(zhuǎn)換它并返回一個(gè)值的函數(shù) -func(interface{}) interface{}


不知道MinLength,MaxLength和Validate在此上下文中代表什么——不清楚為什么它們?cè)?Javascript 中是數(shù)組,以及如何確定它們?cè)?Go 中的長(zhǎng)度恰好為 2。


查看完整回答
反對(duì) 回復(fù) 2023-03-21
  • 1 回答
  • 0 關(guān)注
  • 219 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)