gpt4 book ai didi

arrays - Ruby(Chef) - 将散列转换为数组

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:05 24 4
gpt4 key购买 nike

我有一本带有哈希的 Chef Recipe 。

foo = { 
'herp' => 42,
'derp' => 84
}

我有一个只能接受数组的 LWRP 资源 (bar)

iis_root 'some string' do
bar []
end

如何将“foo”转换为数组以便在资源“bar”中使用它

寻找这样的东西:

[ "herp=42","derp=84"]

最佳答案

bar = foo.map{ |e| e.join("=")}
=> ["herp=42", "derp=84"]

关于arrays - Ruby(Chef) - 将散列转换为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30204051/

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