我使用的是JSONAPI兼容的API,其中一种格式要求是所有数据(传入和传出)必须包装在data
对象中。所以我的请求如下:
{
"data": {
"email": "email@example.com",
"password": "pass",
"type": "sessions"
}
}
我的回答如下:
{
"data": {
"user_id": 13,
"expires": 7200,
"token": "gpKkNpSIzxrkYbQiYxc6us0yDeqRPNRb9Lo1YRMocyXnXbcwXlyedjPZi88yft3y"
}
}
在我的控制器中,在发出新的会话请求时,我有:
$scope.signin = ->
session = new Session
email: $scope.user.email
password: $scope.user.password
session.$save()
console.log session
console.log session.token
if not session.token
alert 'Invalid Login'
else
$rootScope.session_token = session.token
$state.go 'app.dashboard'
我的Session
是一个看起来像的工厂:
angular.module('webapp').factory 'Session', [
'$resource'
($resource) ->
$resource 'http://localhost:9500/v1/sessions',
id: '@id'
,
save:
method: 'POST'
transformRequest: (data) ->
result =
data: JSON.parse JSON.stringify data
result.data.types = 'sessions'
result = JSON.stringify result
result
transformResponse: (data) ->
result = JSON.parse data
a = JSON.parse JSON.stringify result.data
console.log a
a
请求没问题。格式化和解析似乎工作。但是,当我log
显示为Resource
而非Object
时,回复就会显示。并且session.token
显示为未定义,即使服务器正在返回有效数据。
如何修改我的transformResponse
以解决此问题?
答案 0 :(得分:7)
我认为您想要的是通过承诺捕获您的资源响应:
session.$save().$promise.then(function (result) {
console.log (result);
});
答案 1 :(得分:3)
我可以建议使用XHR拦截器吗?
<强> xhrInterceptor.js 强>:
(function (app) {
"use strict";
function XhrInterceptor($q) {
return {
request: function requestInterceptor(config) {
var data = config.data;
if (data &&
config.method === "POST") {
config.data = {
data: data
};
}
return config || $q.when(config);
},
response: function responseInterceptor(response) {
if (typeof response === "object") {
if (response.config.method === "POST") {
response.data = response.data.data || {};
}
}
return response || $q.when(response);
}
};
}
app
.factory("app.XhrInterceptor", ["$q", XhrInterceptor]);
})(window.app);
<强> app.js 强>:
在配置阶段或其他初始化逻辑中,添加响应拦截器。
app
.config(["$httpProvider", function ($httpProvider) {
$httpProvider.interceptors.push("app.XhrInterceptor");
});
更多信息