Without seeing your app, it's hard to tell what the problem is.
Is your server returning JSON data (verify this in the network tab of your dev tools)
If it's returning data, is it an Array of objects?
If you print out the results of the findAll, what comes back?
- Cookbook.Models.Recipe.findAll({}).then(function(results){
- console.log(results);
- });
There could also be problems with how you are using the results. This should plug into the Cookbook example and work. Have you made any modifications to the example application?