Making Loopback API Ember.js compatible
问题 I'm trying out Loopback for an API that will talk to Ember. Ember requires JSON to be contained in 'keys', e.g. for an account: { account: { domain: 'domain.com', subdomain: 'test', title: 'test.domain.com', id: 1 } } I've found some advice on the Google group about how to alter the response so that Ember will receive it, using afterRemote hooks. E.g. in my models/account.js: module.exports = function(Account) { Account.afterRemote('**', function (ctx, account, next) { if(ctx.result) { if