我正在使用hash
包含键/值对的 ruby,用于在我的 MailChimp API 中创建新订阅者。
user_information = {
'fname' => 'hello world',
'mmerge1' => 'Product X' if user.product_name.present?
}
显然,我得到一个语法错误syntax error, unexpected modifier_if
......我基本上只想添加mmerge1
基于条件为真的。