Domanda

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.

È stato utile?

Soluzione

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)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top