dataTable - 페이징 안되는 문제(계속 1page로 뜸)
현상
dataTable - 페이징 안되는 문제(계속 1page로 뜸)
문제의 코드
- 각 페이지마다 필터링된 데이터 = sample_list_per_page
- 전체 데이터 = sample_list_all
datalist_to_json = json.dumps(
{"data": sample_list_data, "recordsFiltered": len(sample_list_data), "recordsTotal": len(sample_list)}
) # python 데이터 -> json
원인
- Total records, after filtering
(i.e. the total number of records after filtering has been applied - not just the number of records being returned for this page of data).
- recordsFiltered에 해당 페이지의 갯수만 넣는 줄 알았는데, 그게 아니라 전체 데이터 갯수를 넣어야 함.....
해결
datalist_to_json = json.dumps(
{"data": sample_list_data, "recordsFiltered": len(sample_list), "recordsTotal": len(sample_list)}
) # python 데이터 -> json
Author And Source
이 문제에 관하여(dataTable - 페이징 안되는 문제(계속 1page로 뜸)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sandartchip/dataTable-페이징-안되는-문제계속-1page로-뜸저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)