在AngularJS中创建对象数组可以通过以下步骤实现:
$scope.objectArray = [];
function Person(name, age) {
this.name = name;
this.age = age;
}
$scope.objectArray.push(new Person("John", 25));
完整的示例代码如下:
angular.module("myApp", [])
.controller("myController", function($scope) {
$scope.objectArray = [];
function Person(name, age) {
this.name = name;
this.age = age;
}
$scope.objectArray.push(new Person("John", 25));
$scope.objectArray.push(new Person("Jane", 30));
$scope.objectArray.push(new Person("Bob", 40));
});
在上述示例中,我们创建了一个名为"myApp"的AngularJS应用,并定义了一个名为"myController"的控制器。在控制器中,我们定义了一个空的对象数组$scope.objectArray,并使用构造函数Person创建了三个Person对象,并将它们添加到对象数组中。
这样,我们就成功地在AngularJS中创建了对象数组。在实际应用中,可以根据具体需求对对象数组进行操作和利用。
领取专属 10元无门槛券
手把手带您无忧上云