gpt4 book ai didi

javascript - 如何在 AngularJS 中向二维数组添加项目

转载 作者:行者123 更新时间:2023-11-28 14:52:32 26 4
gpt4 key购买 nike

如何将输入值推送到 tasks.name 并将默认 status: false 包含到 $scope.tasks 数组中?

HTML

<input type="text" ng-model="typeTask">
<button ng-click="updateTasks()">Add task</button>

JS(AngularJS)

var app1 = angular.module('app1', []);
app1.controller('ctrl1', ['$scope', function($scope) {
$scope.typeTask = "test";

$scope.tasks = [
{
name: 'Example task 1',
status: false
},
{
name: 'Example task 2',
status: true
},
{
name: 'Example task 3',
status: false
}
];

$scope.updateTasks = function() {
$scope.tasks.push()
};

}]);

最佳答案

只需将其作为对象推送到 tasks 数组

$scope.updateTasks = function() {
$scope.tasks.push({
name: $scope.typeTask,
status: false
})
};

关于javascript - 如何在 AngularJS 中向二维数组添加项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44008711/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com