我的代码有问题。我是电子反应新手,所以也许是一个简单的问题(我希望)。基本上,我正在创建一个可排序的列表,我想调用在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)
}
});
}
};