如何在rails上自动设置区域设置?例如,如果网页在西班牙开放,那么locale = es,类似地,如果是在英国,那么locale = en和alike?
请帮忙我
解决方法
尝试使用gem geocoder和
i18n_data gem,并有一个before_filter到一个方法
def checklocale I18n.locale = I18nData.country_code(request.location.country) end