Nurlan
Nurlan

Reputation: 615

Ember JS custom Rest URL

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

Answers (2)

Bhavya Bansal
Bhavya Bansal

Reputation: 257

just use Ember.$.ajax and you can issue an ajax call to your rest end point.

Upvotes: 0

Mike Grassotti
Mike Grassotti

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

Related Questions