这是我的component.html
<div class="row" [dragula]='"photos-bag"' [dragulaModel]='photos'>
<div *ngFor="let photo of photos" [class.sortable]="photo.sortable">
<a href="#" class="thumbnail" >
<img src="http://placehold.it/140.png" >
</a>
{{ photo.name }}
</div>
</div>
这是我的 component.ts 中的部分,如果它包含一个可排序的类,它将元素设置为可拖动
dragulaService.setOptions('photos-bag', {
moves: function(el, source, handle, sibling) {
return el.classList.contains('sortable');
},
});
现在问题来了..是否有一个选项可以只切换具有sortable
类的元素?..到目前为止,我认为接受/无效选项可以解决问题,但似乎没有。