BootStrap Table前台和后台分页对JSON格式的要求

BootStrap Table前台和后台分页对JSON格式的要求

前台分页:

sidePagination: "client" ,对应的json格式必须为:
[
   {
     "id" :1,
     "name" : "张三" ,
     "age" :22
   },
   ...
]
   

后台分页:

sidePagination: "server" ,对应的json格式必须为:
{
    "total" :20,
    "rows" :[
         {
           "id" :1,
           "name" : "张三" ,
           "age" :22
         },
        ...
     ]
}
 
参考来源:https://www.jb51.net/article/117388.htm
   

猜你喜欢

转载自www.cnblogs.com/sayshap/p/10747691.html