1.後台已產生Json對象,js已經獲取,前端ng-repeat 不知如何獲取
下面是前端程式碼
<p ng-repeat="x in data track by $index">
<td>{{x}}</td>
</p>
下面是js程式碼
var app = angular.module('ngApp', []);
app.controller('productPackagePullController', function ($scope,$http) {
$http.get('?/vProduct/getSpecsDistinct/',{params: {id: 8147}})
.success(function (data) {
$scope.data = data;
});
});
下面是頁輸出
請教我如何只取a.spd1name的值