https://datatables.net/usage/server-sidejQuery的數據表
在上述網頁中,有您需要接收,使服務器端的數據表的工作參數。 我有一個輔助類
public class TableParameter
{
public string sEcho { get; set; }
public int iDisplayStart { get; set; }
public int iDisplayLength { get; set; }
public int iSortingCols { get; set; }
}
但爲了我需要接受
string sSortDir_(int)
如何做呢列進行排序?我知道(int)表示需要排序的列ID,但我無法在控制器中捕獲它。