Reputation: 615
I want to use custom url for rest in Ember JS. I want to use url like http://itunes.apple.com/search?term=Limpbizkit Is it possible?
Upvotes: 1
Views: 324
Reputation: 257
just use Ember.$.ajax and you can issue an ajax call to your rest end point.
Upvotes: 0
Reputation: 19050
Yes, it is possible. Since you are not using ember-data just fetch data using jQuery ajax. EvilTrout has a great blog post explaining how this can be done, check it out here:
http://eviltrout.com/2013/03/23/ember-without-data.html
Upvotes: 2