gpt4 book ai didi

ruby - 如果 OpenStruct 中不存在键,我如何返回 nil?

转载 作者:数据小太阳 更新时间:2023-10-29 07:31:47 25 4
gpt4 key购买 nike

我有一个散列传递给 OpenStruct为了让它成为一个.的词.这非常有效。但是每当我尝试访问一个不存在的 key 时 undefined method <unknown key> for #<Hash:0x7f24ea884210> (NoMethodError)被提出。我怎样才能让它返回 nil

如果我用原始哈希尝试同样的事情,我会得到 nil但不是 OpenStruct !!

程序片段:

TXT_HASH = load_data("test.txt")
pp TXT_HASH[:ftp][:lastname] ## print nil as lastname does not exist

TXT = OpenStruct.new(TXT_HASH)
pp TXT.ftp.lastname ## raises NoMethodError ## Can it return nil?

最佳答案

OpenStruct 不是递归的。在这种情况下,TXT.ftp 返回一个 Hash,而不是一个 OpenStruct,因此 #lastname 没有定义。

如果你愿意,有一个图书馆叫recursive-open-struct .像这样使用它:

require 'recursive-open-struct'

TXT = RecursiveOpenStruct.new(TXT_HASH)
pp TXT.ftp.lastname #=> nil

关于ruby - 如果 OpenStruct 中不存在键,我如何返回 nil?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33379630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com