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

获取已知结构字段的名称

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 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序
  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作