过滤JSON文件中的数据

时间:2016-06-17 15:07:31

标签: javascript angularjs json

我可以访问一些JSON数据,这些数据有一些对我不起作用的标题。当我通过我的应用程序访问JSON时,这些额外的3个字段显示为空白条目(请参见图像)如何在范围级别过滤此数据源,以仅访问中间{},bkev_name等中的数据( 23个房产的清单。)

enter image description here

    .controller('ListController', ['$scope', '$http', '$state','$cordovaBluetoothSerial', '$window', '$location', function($scope, $http, $state, $cordovaBluetoothSerial, $window, $location) {
      $http.get('js/12137.json').success(function(data) {
       $scope.orders = data;

1 个答案:

答案 0 :(得分:0)

感谢mtadd

$ scope.orders = [data.data];