Ask A Question

Notifications

You’re not receiving notifications from this thread.

How do I sort values incoming from an API call?

Chantal Justamond asked in General
- I have incoming results from an API and I want to sort them (e.g. price) how can i do this without saving the results to the DB?
- this is a rails app. 
Reply
Hey Chantal,

You would just use regular Ruby sort_by or sort_by! to sort the array that you get back from the API. https://apidock.com/ruby/Enumerable/sort_by
Reply
Well I want to render them first as they come and then with a dropdown button i want to sort them.  I guess I'm a little confused on the how
Reply
OMG! It worked.. I did directly on the controller which i'm not super happy about but it's a good start.
thank you so much

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,464+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.