如图所示。后端真正返回给我的数据实在第二层data里面。
我应该如何在全局做一层数据处理?在哪里做比较合适?
伊谢尔伦2017-05-15 17:01:10
angular.module('my', [])
.config(function ($httpProvider) {
$httpProvider.interceptors.push(function () {
return {
response: function (response) {
if (200 === response.data.code) {
response.data = response.data.data;
}
return response;
}
}
});
})