suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

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

高洛峰高洛峰2797 Tage vor573

Antworte allen(1)Ich werde antworten

  • 伊谢尔伦

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

    Antwort
    0
  • StornierenAntwort