abuiles / ember-101

https://leanpub.com/ember-cli-101
95 stars 23 forks source link

Do a simple intro to promises on page 12 #3

Open abuiles opened 10 years ago

abuiles commented 10 years ago

$E.store.find('friend').then(function(friends) { friends.forEach(function(friend) { console.log('Hi from ' + friend.get('firstName')); }); });

stavarotti commented 9 years ago

Can we lean towards pointing people to RSVP.Promise?