Backbone still has the best API imo:
loadCommentsFromServer: function() {
comments.fetch().then(function(response) {
// perform setState here
});
}
It's clear what model/resource I'm fetching, no internals like the service URL showing through, and when I get a response I have the additional benefit of the Collection API ready to do things like sort/filter/group the data.