0

我正在尝试使自动排序正常工作,它在您加载页面时设置在 url 上:blah.com/?sorts[date]=-1但是您必须刷新页面才能使其正常工作,因为它不会在页面加载时立即排序。

  $.ajax({
       // Uncomment the following to send cross-domain cookies:
       //xhrFields: {withCredentials: true},
       url: $('#fileupload').fileupload('option', 'url'),
       dataType: 'json',
       context: $('#fileupload')[0]

   }).always(function () {
       $(this).removeClass('fileupload-processing');
   }).done(function (result) {
       $(this).fileupload('option', 'done').call(this, $.Event('done'), {result: result});
       $('.table-striped').dynatable({
           dataset: {
               files: result,
               ajaxData: {
                   sorts: { 'date': -1 }
               }
           }
       });
   });
4

0 回答 0