gpt4 book ai didi

ruby hash 添加键/值 if 修饰符

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

我正在使用包含用于在我的 MailChimp API 中创建新订阅者的键/值对的 ruby​​ hash

user_information = {
'fname' => 'hello world',
'mmerge1' => 'Product X' if user.product_name.present?
}

显然,我收到了 syntax error, unexpected modifier_if 的语法错误...我基本上只想根据条件为真添加 mmerge1

最佳答案

你不能在散列初始化 block 中那样使用 if。您必须在初始化哈希后有条件地添加新的键/值:

user_information = {
'fname' => 'hello world',
}

user_information['mmerge1'] = 'Product X' if user.product_name.present?

关于ruby hash 添加键/值 if 修饰符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10986972/

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