【发布时间】:2014-09-18 08:48:04
【问题描述】:
我使用simple_form gem 来选择国家:
= simple_form_for @shop, :url => { :action => "create" }, :html => {:id => 'new_shop' } do |f|
= f.simple_fields_for :address, :html => {:multipart => true} do |o|
= o.input :country, :label => "Country"
但国家名称以短格式保存在数据库中(如RU、FR、AU 等)。
我想知道,如何在视图中显示完整的长名称?谢谢!
【问题讨论】:
-
看看thisgem?
-
数据库中有长格式冲突吗?
-
@Nitish,谢谢,我去看看!
-
@Зелёный,不,它在数据库中是短格式。
-
你发现了吗?我和你有同样的问题
标签: ruby-on-rails format simple-form country