我正在使用Angular bindings for SortableJS以获得一系列阻力&删除列表。是否有可能拖拽和当每个列表都包含在自己的组件中时,是否可以工作?
在视觉层面上,我可以重新排列列表中的项目。但是,在列表之间转移的项目不会出现,直到第二个项目被转移(请注意"列表2"在屏幕截图的上半部分中缺少列表项目" 2" ,这是从"列表1"转移到"列表2")的最后一项。
另一个问题是没有任何改变是通过拖拽和下降反映在列表中'内容 - 注意"中的列表如何查看结果"部分与上部的表示不匹配。
我目前的代码如下:
父组件:
import { Component, OnInit } from '@angular/core';
import { ItemsService } from '../items.service';
@Component({
selector: 'app-multi-list',
template: `
<h2>Drag / drop the item</h2>
<h3>list 1</h3>
<app-list [(items)]="itemsService.items1"></app-list>
<h3>list 2</h3>
<app-list [(items)]="itemsService.items2"></app-list>
<hr>
<h2>See the result</h2>
<div>
<h3>list 1</h3>
<div *ngFor="let item of itemsService.items1">{{ item }}</div>
<h3>list 2</h3>
<div *ngFor="let item of itemsService.items2">{{ item }}</div>
</div>
`,
styleUrls: ['./multi-list.component.css']
})
export class MultiListComponent implements OnInit {
constructor(public itemsService: ItemsService) { }
ngOnInit() { }
}
包含可排序列表的子组件:
import { Component, Input, OnInit } from '@angular/core';
import { SortablejsOptions } from 'angular-sortablejs';
@Component({
selector: 'app-list',
template: `
<div [sortablejs]="items" [sortablejsOptions]="{ group: 'test' }">
<div *ngFor="let item of items">{{ item }}</div>
</div>
`,
styleUrls: ['./list.component.css']
})
export class ListComponent implements OnInit {
@Input() items: any[];
ngOnInit() { }
}