我想点击"添加行"按钮新行将位于顶部表格中。 我有这个基本 example 。
我尝试在下面的函数中添加一个过滤器,但我得到了相同的结果。
// add user
$scope.addUser = function() {
$scope.inserted = {
id: $scope.users.length+1,
name: '',
status: null,
group: null
};
$scope.users.push($scope.inserted);
};
感谢您的帮助。