遍历所有空数组并推送默认对象

时间:2014-10-26 17:16:12

标签: angularjs ng-repeat

我对角度很新,所以请原谅这个问题的答案是否相当简单。我的数据结构是这样的,我需要渲染多个对象数组。在我看来,所有这些都显示为包含在ng-repeat中的表单。我遇到的问题是,如果任何数组为空,表单将不会显示。由于数组都是不同的,我希望能够遍历所有数组并将默认对象添加到那些空的数组中。下面是其中一个数组的示例:

$scope.client.contacts =
    [
        { Id: 1, FistName: "firstname", LastName: "lastname", Phone: "111-111-1117", Address: "11 Address Place", City: "Lawrence", StateId: 1, Zip: "11111", Relationship: "Mother", Email: "testing@gmail.com", SystemLogin: true },
        { Id: 2, FistName: "firstname2", LastName: "lastname2", Phone: "111-111-1111", Address: "1111 Ocean Ave", City: "Brooklyn", StateId: 1, Zip: "11111", Relationship: "Grandmother", Email: "testing2@gmail.com", SystemLogin: false }
    ];

最好和最有效的方法是什么?一个jsfiddle代码例子非常有帮助

0 个答案:

没有答案