我看到以下用于调用服务器端资源的示例:
UserSession.prototype.$save = function() {
return $http.post('/users/sign_in', {
"user" : {
"email" : this.email,
"password" : this.password,
"remember_me" : this.remember_me ? 1 : 0
}
});
};
我的问题是,如果调用失败,是否可以在此代码中看到实际的错误响应?上面的内容将如何写?