문제

am using carmen rails gem for to select country and subregion. after implemented database saving the country code and subregion code.

I can get the country name from code using this
@country_name = Carmen::Country.coded(country_code)

Now i want to get subregion name from subregion code.

Help me to solve this problem.

도움이 되었습니까?

해결책

The coded and named methods that you use with Carmen::Country can also be used with the subregions collection.

@country = Carmen::Country.coded(country_code)
@subregion = @country.subregions.coded(subregion_code)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top