doutao6380 2013-01-25 02:18
浏览 24
已采纳

获取已知结构字段的名称

I have a struct which represents an object in a database, something like:

type Object struct {
    Id string
    Field1 string
    Field2 int
}

And I'd like to have a function that updates the specific field in the database whenever the field is modified, something along these lines:

func (self *Object) SetField1(value string) {
    self.Field1 = value
    database.Update(self.Id, "Field1", self.Field1) // pseudocode
}

Is there a way to replace the "Field1" hard-coded string such that my code is resistant to future changes in the struct field ordering and naming?

I've poked around the reflect package, and it would be nice to be able to get the StructField that represents the field I'm working with, but it seems to require either the name of the field via hard-coded string, or the field's index in the struct (which is subject to change).

  • 写回答

2条回答 默认 最新

  • dsgsgs30201 2013-01-25 15:00
    关注

    You could validate your string by adding a method something like this:

    func (self *Object) verify(field string) string {
        if _, ok := reflect.TypeOf(*self).FieldByName(field); ok {
            return field
        }
        panic("Invalid field name")
    }
    

    And then use it when passing the string to the database update

    func (self *Object) SetField1(value string) {
        self.Field1 = value
        database.Update(self.Id, self.verify("Field1"), self.Field1) // pseudocode
    }
    

    But I would think that if you're willing to use reflection, that you'd be better off just making a generic setField method that accepts the field as a string, and the value as a interface{}, checks the field and value, sets the value and updates the database.

    This way everything is done using the string, so it'll either work or panic, and you don't need to remember to use the .verify() method.

    Somthing like:

    func (self *Object) SetField(field string, value interface{}) {
        // verify field and value using reflection
        // set the value using reflection
        database.Update(self.Id, field, self.Field1)
    
    }
    

    Though I don't think this'll work on unexported fields.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?