I have a Meteor method that retrieves Google Books data
searchBooks: function (query) {
this.unblock();
return Meteor.http.call("GET", "https://www.googleapis.com/books/v1/volumes?q=" + query);
}
which is called like this
Meteor.call("searchBooks", term, function(error, results) {
console.log(results.content);
});
How do I go about making the results renderable in a template (with handlebars)?