在 Angular 中将对象推送到数组中
本文将讨论使用 AngularJS 将对象推送到数组中。我们将在 push()
方法的帮助下做到这一点。
push()
方法是 AngularJS 中的内置方法,可将对象插入到现有数组中。它有两个参数:要推送的对象和插入对象的位置索引。
第一个参数是将被推入数组的对象,其类型应为字符串、数字、布尔值或空值。
第二个参数是插入这个新元素的索引,相对于它之前插入的位置。例如,如果你想在 an apple
之后插入一个唯一的字符串,你将使用 1
,如果你要在之前插入它,则使用 -1
。
Push API 允许从服务器向客户端发送消息,而 Notifications API 允许消息在浏览器收到后显示。但是,我们不能直接从我们的服务器向网络计算机发送通知。
在 Angular 中将对象推入数组的步骤
push()
方法接受一个对象或数组并将其插入到集合的末尾。
第一步是创建一个新的空数组,长度为 2。这是因为 push()
方法一次只能插入一个对象或元素。
第二步是创建一个具有两个属性的对象:Name
和 Age
。这将是我们要插入到新数组中的对象。
最后,我们需要以新创建的对象作为参数调用新数组的 push()
方法。push()
方法会将这个对象插入到我们的新数组中的最后一个索引处,在本例中为 0(零)。
在 Angular 中将对象推入数组的示例
让我们借助上述步骤讨论一个易于理解的示例,以更好地了解如何使用 AngularJS 将对象推送到数组中。
HTML 代码:
<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-rc.2/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="demo">
<form ng-controller="Sample as test" ng-submit="test.addText(test.myText)">
<input type="text" ng-model="test.myText" value="food">
<button type="submit">Add</button>
<div ng-repeat="item in test.arrayadd">
<span>{{item}}</span>
</div>
</form>
</body>
</html>
JavaScript 代码:
var app = angular.module('demo', []);
app.controller('Sample', function($scope) {
this.arrayadd = [{
text: 'Name',
}, {
text: 'Age'
}, ]
this.addText = function(text) {
if (text) {
var obj = {
text: text
};
this.arrayadd.push(obj);
this.myText = '';
}
}
});
点击这里查看上述代码的演示。
Muhammad Adil is a seasoned programmer and writer who has experience in various fields. He has been programming for over 5 years and have always loved the thrill of solving complex problems. He has skilled in PHP, Python, C++, Java, JavaScript, Ruby on Rails, AngularJS, ReactJS, HTML5 and CSS3. He enjoys putting his experience and knowledge into words.
Facebook