我正在使用ng2-dragula将对象拖放到4号角上。
一切正常,但我遇到了问题
我正在使用以下小龙:
this._dragulaEventSubscription.add(this._dragulaService.dropModel(id)
.subscribe(({ name, el, target, source, sibling, item, sourceModel, targetModel, sourceIndex, targetIndex }) => {
console.log({ name, el, target, source, sibling, item, sourceModel, targetModel, sourceIndex, targetIndex });
})
);
我移动的项目以及列的源和目标都是具有所需属性的大角度对象。
我移动的服务返回项(对象不是HTML元素),但是源和目标是我拖动到的列的DOM元素。
我希望该服务返回我的源和目标angular4对象。
如何绑定它才能工作? 我应该为所有列设置随机ID,然后在代码中获取其ID吗?