这是我第一次在使用 codeigniter 的自定义 cms 创建中使用 nestedsortable.js,所以我将它与 Codeigniter php 框架一起使用。我有一个有序和嵌套的列表(用于订单页面),我需要使用“toArray”将此列表转换为数组,但它不起作用错误消息:未捕获的类型错误:无法调用未定义的方法“匹配”这是我的 js 代码:
<script>
$(document).ready(function(){
$.post('<?=base_url("index.php/admin/pages/order_ajax"); ?>',{},function(data){
$('#orderResult').html(data);
});
$('#save').click(function(){
oSortable = $('.sortable').nestedSortable('toArray');
$.post('<?=base_url("index.php/admin/pages/order_ajax"); ?>',{sortable:oSortable},function(data){
$('#orderResult').html(data);
});
});
});
除了一切都很好,所以我需要你的帮助