angular里我设置了一个默认值,在获取后台数据后默认值怎样去掉覆盖啊?

kitchenApp.controller('HomeCtrl', function ($scope,$http, $stateParams, $state) {
        $http({
              method: 'GET',
              url: 'http://rest.ilefe.cn/rest/product/read_list'
          }).then(function successCallback(response) {
          
                  $scope.data = response.data.data;
        console.log(response.data.data);
          }, function errorCallback(response) {
            alert("没有获取到");
        });
    $scope.fetch1 = function() {
        $(function() {
            $(".list-title ul > li").click(function() {
                $(this).addClass("finger").siblings().removeClass("finger");
            });
        });
        $http({
              method: 'GET',
              url: 'http://rest.ilefe.cn/rest/product/read_list'
          }).then(function successCallback(response) {
          
                  $scope.data = response.data.data;
        console.log(response.data.data);
          }, function errorCallback(response) {
            alert("没有获取到");
        });
      };
      $scope.fetch2 = function() {
        $(function() {
            $(".list-title ul > li").click(function() {
                $(this).addClass("finger").siblings().removeClass("finger");
            });
        });
        $http({
              method: 'GET',
              url: 'http://rest.ilefe.cn/rest/product/readlist/category_id/6'
          }).then(function successCallback(response) {
          
           
             
                  $scope.data = response.data.data;
        console.log(response.data.data);
          }, function errorCallback(response) {
            alert("没有获取到");
        });
      };
      $scope.fetch3 = function() {
        $(function() {
            $(".list-title ul > li").click(function() {
                $(this).addClass("finger").siblings().removeClass("finger");
            });
        });
        $http({
              method: 'GET',
              url: 'http://rest.ilefe.cn/rest/product/readlist/category_id/7'
          }).then(function successCallback(response) {
                  $scope.data = response.data.data;
        console.log(response.data.data);
          }, function errorCallback(response) {
            alert("没有获取到");
        });
      };
    });

http://img.mukewang.com/5763ca42000115a908570881.jpg



慕后端8411129
浏览 2494回答 1
1回答

e生态

遍历你覆盖的数据就可以如果是集合采用  ng-replace="item in items"自动处理
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

AngularJS
Html5