Golang不知道大家是否熟悉?今天我将给大家介绍《使用 Reflect 检测 nil 值》,这篇文章主要会讲到等等知识点,如果你在看完本篇文章后,有更好的建议或者发现哪里有问题,希望大家都能积极评论指出,谢谢!希望我们能一起加油进步!
我使用 reflect 包创建一个可重用的 json 解析器,该解析器在运行时将 json 数据映射到特定结构。
我希望它能够检测到特定必填字段何时缺失。
我使用以下方法创建一个变量“parsedinput”:
parsedinput := reflect.new(reflect.typeof(exampleinputobject).elem())
然后,我使用 json 库将数据解析到该变量中。我现在想要遍历这些值以发现任何缺失的内容:
for i := 0; i < parsedinput.elem().numfield(); i++ {
logger.info("field name was: " + field.name)
fieldtype := fmt.sprintf("'%v'", field.type.kind().string())
logger.info("field type was: " + fieldtype)
interfacevalue := fmt.sprintf("'%v'", parsedinput.elem().field(i).interface())
logger.info("interface value was: " + interfacevalue)
//look to see if the field is a null pointer. if so, this could be an issue
if (field.type.kind().string() == "ptr") && (parsedinput.elem().field(i).interface() == nil) {
//do null pointer stuff here
}
}
对于缺少的字段,我看到了日志输出
Field name was: MissingFieldName
Field type was 'ptr'
Interface value was '<nil>'
但是,我的代码永远不会陷入空指针逻辑 - 我做错了什么?
解决方案
根据上面的评论 - 我设法使用 reflect 包中的内置函数解决了这个问题 - 特别是通过测试:
Reflect.ValueOf(parsedInput.Elem().Field(i).Interface()).IsNil()
今天关于《使用 Reflect 检测 nil 值》的内容介绍就到此结束,如果有什么疑问或者建议,可以在编程网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!