引用(不复制)一个类作为另一个类的成员 - Mootools

时间:2013-03-13 13:26:20

标签: javascript mootools

我有以下课程

Box Class

var Box = new Class({
    Implements: [Options],
    options: {
        name: 'new',
        weight: 0
    },
    initialize: function (options) {
        this.setOptions(options);
    },
    getParent: function () {
        return this.options.parent;
    }
});

收藏类

var Collection = new Class({
    Implements: [Options],
    options: {
        boxes: []
    },
    boxes: [],
    initialize: function (options) {
        var self = this;
        this.setOptions(options);
        Array.each(this.options.boxes, function (box) {
            self.boxes.push(new Box({
                parent: self,
                name: box.name,
                weight: box.weight
            }));
        });
    }
});

我在创建时将Collection类(作为parent)传递给Box类。

var newCollection = new Collection({
    boxes: [
        {
            name: 'A',
            weight: 9
        }, 
        {
            name: 'B',
            weight: 3
        }, 
        {
            name: 'C',
            weight: 2
        }, 
        {
            name: 'D',
            weight: 5
        }, 
        {
            name: 'E',
            weight: 7
        }
    ]
});

我希望parent类中的Box是对Collection类的引用而不是副本,尽管我似乎得到了newCollection的副本每次创建Box类时(每个框的长度不同)

Array.each(newCollection.boxes, function (box) {
    console.log('*',box.getParent());
});

我是mootools的新手,即使我已经阅读了文档,这也是我编写代码的方式。在mootools中是否有更可接受的编码模式,我可以通过它来引用parent

这是fiddle

1 个答案:

答案 0 :(得分:1)

容易错过。 setOptionsdocs深层副本选项对象。只需在初始化后设置Box的parent属性即可。我发布了code here

的略微修改版本
Array.each(this.options.boxes, function (box) {
    var nB = new Box({
        name: box.name,
        weight: box.weight
    });
    // Note the difference
    nB.parent = self;
    self.boxes.push(nB);
});