如何使用AngularJS将对象推入数组

10 浏览
0 Comments

如何使用AngularJS将对象推入数组

我试图使用Angular的push函数,但它不起作用。

我想将字符串(或对象)添加到一个数组中。

我在Stack Overflow上搜索了基本的示例,但没有找到。

有人能否纠正我的代码或给出一个非常基本的示例?

这是我的示例。

这是HTML代码:

这是JavaScript代码:

(function() {
    var app = angular.module('test', []);
    app.controller('TestController', function() {
        this.arrayText = {
            text1: 'Hello',
            text2: 'world',
        }
        this.addText = function(text) {
            arrayText.push(this.text);
        }
    });
})();

0