我想看看AngularJS,用CF后端
我有以下的代码,拉了一个名为getIndex定期CFQUERY其列拉五个行,每行(名字,姓氏)
var theQuery = <cfoutput>#serializeJSON(getIndex,true)#</cfoutput>;
var theData = theQuery.DATA
function dataLooper($scope){
$scope.people = theData;
console.log($scope.people);
}
控制台日志产生
对象{FIRSTNAME = [5],LASTNAME = [5]}
我的HTML看起来像
<div ng-controller="dataLooper">
<div ng-repeat="person in people">
{{person}} - {{person.FIRSTNAME}}<br>
</div>
</div>
产生
["Yasteel","Kyleigh","Gary","Nick","Kerry-Leigh"] -
["Si","No","Ho","Ga","Gr"] -
显然,我失去了一些东西,因为这是不是我所期待的。 我猜测,这是因为AngularJS正在寻找一个替代Arrray的对象。 我不知道,但我希望serializeJSON会给我一些类型可用的对象中没有大量的额外操作的。 有人能指出我朝着正确的方向吗?