복붙노트

[MONGODB] MongoDB의 볼록 JS에서의 데이터 테이블의 1000 개 이상의 연속보기?

MONGODB

MongoDB의 볼록 JS에서의 데이터 테이블의 1000 개 이상의 연속보기?

나는 데이터 테이블을 구현하고 MongoDB를, 각도-JS를 사용하고 있습니다. 최대 1000 행에 최대를 표시하는 데이터 테이블. API 999 개 기록이있는 경우 API는 만 1000 행을 표시 (1001)를 가지고 있다면, 999 행을 표시. API 2000이있는 경우 다음 또한 1000 표시됩니다.

$scope.standardOptions = DTOptionsBuilder
   .fromFnPromise(R.all('----api call--').getList())
   .withDOM("<'dt-toolbar'<'col-xs-12 col-sm-6'f><'col-sm-6 col-xs-12 hidden-xs'l>r>" +
   "t" +
   "<'dt-toolbar-footer'<'col-sm-6 col-xs-12 hidden-xs'i><'col-xs-12 col-sm-6'p>>")
   .withBootstrap();

$scope.standardColumns = [               
   DTColumnBuilder.newColumn('flightNo').withOption('defaultContent', '-'),
   DTColumnBuilder.newColumn('eta').renderWith(dataRendererETA).withOption('defaultContent', '-'),
   DTColumnBuilder.newColumn('etd').renderWith(dataRendererETA).withOption('defaultContent', '-'),        
];

HTML

      <div class="widget-body no-padding">
              <table datatable dt-options="datatables.standardOptions" dt-columns="datatables.standardColumns" class="table table-striped table-bordered table-hover" width="100%">
                <thead>
                  <tr>
                    <th>Flight no.</th>
                    <th>eta</th>
                    <th> etd</th>                  

                  </tr>
                </thead>
              </table>
         </div>

내 일부 API는 내가 데이터 테이블의 모든 기록을 얻을 수있는 방법 그래서 1000 개 이상의 기록을 가지고있다.

해결법

    from https://stackoverflow.com/questions/47568013/get-more-than-1000-row-in-the-data-table-in-angular-js-from-mongodb by cc-by-sa and MIT license