search

Home  >  Q&A  >  body text

angular.js - angular中$http如何将请求成功后得到的数据做一层过滤?

如图所示。后端真正返回给我的数据实在第二层data里面。
我应该如何在全局做一层数据处理?在哪里做比较合适?

高洛峰高洛峰2744 days ago525

reply all(1)I'll reply

  • 伊谢尔伦

    伊谢尔伦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;
                        }
                    }
                });
            })

    reply
    0
  • Cancelreply