我正在使用vuejs和Rubaxa Sortable JavaScript库。 sortable与<ul><li>
正常工作,但是对于表格行,当我通过拖放重新排列时,它会发出此错误。
Sortable.min.js:3 Uncaught DOMException: Failed to execute 'matches' on 'Element': '>*' is not a valid selector.
我正在使用Vue.js v2.5.13和Rubaxa Sortable v1.7.0。
Vue.directive('sortable', {
inserted: function (el, binding) {
var sortable = new Sortable(el, binding.value || {});
}
});
new Vue({
el: '#app',
data () {
return {
items: [{id: 1},{id: 2},{id: 3},{id: 4},{id: 5}]
}
},
methods: {
reorder ({oldIndex, newIndex}) {
const movedItem = this.items.splice(oldIndex, 1)[0]
this.items.splice(newIndex, 0, movedItem)
}
}
})
&#13;
<script src="https://vuejs.org/js/vue.min.js"></script>
<script src="https://cdn.rawgit.com/RubaXa/Sortable/c35043730c22ec173bac595346eb173851aece20/Sortable.min.js"></script>
<div id="app">
<h2>With List</h2>
<ul v-sortable="{onEnd: reorder}">
<li v-for="i in items" :key="i.id">{{ i.id }}</li>
</ul>
<hr/>
<h2>With Table</h2>
<table v-sortable="{onEnd: reorder}">
<tr v-for="i in items" :key="i.id">
<td>{{ i.id }}</td>
</tr>
</table>
{{ items }}
</div>
&#13;
答案 0 :(得分:5)
<table>
不能包含表格行(<tr>
)。表的结构是这样的。
<table>
<thead></thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
所以当我们写这样的html表时,
<table>
<tr>First Row</tr>
<tr>Second Row</tr>
</table>
浏览器会自动在<tbody>
中插入所有行,并将其呈现为这样。
<table>
<tbody>
<tr>First Row</tr>
<tr>Second Row</tr>
</tbody>
</table>
因此,表格行不是<table>
的直接子项,而是<tbody>
的子项。因此,在<tbody>
中生成表格行,并将v-sortable添加到<tbody>
。
<table>
<tbody v-sortable="{onEnd: reorder}"> <!-- v-sortable here -->
<tr v-for="i in items" :key="i.id">
<td>{{ i.id }}</td>
</tr>
</tbody>
</table>
可排序的缩小版本有一个错误,它们以某种方式摆脱了try-catch
块,当它缩小时导致它失败,而<ul><li>
以外的任何内容都是排序。因此,直到他们修复它,使用可排序的开发即未压缩版本。