参见英文答案 >
Ruby Style: How to check whether a nested hash element exists14个
> How to avoid NoMethodError for missing elements in nested hashes,without repeated nil checks?16个
如果我尝试访问不存在的哈希元素,我会得到NoMethodError:nil:NilClass的未定义方法'[]’.但是,我无法预测哪些元素会出现.
> How to avoid NoMethodError for missing elements in nested hashes,without repeated nil checks?16个
如果我尝试访问不存在的哈希元素,我会得到NoMethodError:nil:NilClass的未定义方法'[]’.但是,我无法预测哪些元素会出现.
@param_info = {} @param_info["drug"]["name"] # => NoMethodError: undefined method `[]' for nil:NilClass
当元素意外为零时,如何避免引发此错误?
解决方法
@H_502_11@ 如果我正确理解您的问题,即在遗漏属性值的情况下使其宽容,那么您可以尝试以下方法:@param_info.try(:fetch,:drug).try(:fetch,:name)
这也可能返回nil,但这将消除nil的错误未定义方法'[]’:NilClass
更新:
为了处理不存在的密钥,您可以尝试以下方法. (Got this hint from Equivalent of try for a hash):
@param_info.try(:[],:drug).try(:[],:name)