onAdd内部的自定义函数:

时间:2018-12-28 19:01:18

标签: javascript reactjs electron

我的代码有问题。我是电子反应新手,所以也许是一个简单的问题(我希望)。基本上,我正在创建一个可排序的列表,我想调用在onEnd内部创建的函数:

即使我使用.bind将函数绑定到此,执行onEnd git时,我也会得到未定义storeMyData的信息。我在做什么错了?

谢谢大家

    sortableGroupDecorator(componentBackingInstance){
        // check if backing instance not null
        if (componentBackingInstance) {    
            var sortable = Sortable.create(componentBackingInstance, {
                    draggable: "img", // Specifies which items inside the element should be sortable
                    group: "shared",
                    animation: 150,
                    filter: ".ignore-elements",
                    onEnd: function (/**Event*/evt) {
                        this.storeMyData(componentBackingInstance.id)
                    }
                });
        }
    };

0 个答案:

没有答案