我正在尝试使用 aform_for
collection_select
来显示帐户类型的一些选择字段选项。
我突然想到,如果用户可以在每个选择选项中看到该类型的价格,他们会更容易
这是我目前不工作的代码:
<%= a.collection_select :account_type, AccountType.all, :id, (:name+" - "+number_to_currency(:price)) %>
我如何连接这些值,以便(:name+" - "+number_to_currency(:price))
实际工作而不抛出错误?