Ruby on Rails Tuesday, April 25, 2017

> On Apr 25, 2017, at 8:09 AM, fugee ohu <fugee279@gmail.com> wrote:
>
> I have a TYPES list in my model for ADDRESS_STATE_TYPES like ADDRESS_STATE_TYPES =
> [ ['Alabama', 'AL'], ...
> Now in my controller i have the value of address_state from the pararms list which for the first in the list would be 'AL' How can I retrieve the 'Alabama' column in my controller if I have the other value, 'AL' from params list
> Thanks in advance

Well, since you have the data in an array, you can't index into it like you could in a Hash. There you could have

{ 'AL' => 'Alabama', ... }

and then you could find by either keys or values using
name = ADDRESS_STATE_TYPES['AL']
or
code = ADDRESS_STATE_TYPES.key('Alabama').

But in an array, you're going to have to iterate to find it:

def name_for_code(code)
ADDRESS_STATE_TYPES.each do | pair |
return pair.first if pair.last == code
end
end

Walter

>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/be118090-9621-464d-8a53-0122fc8e975c%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/E0E0E247-BC1A-42CE-A703-7F5A1FA7BF8C%40wdstudio.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment