Error

[Error][jQuery][datatables] datatables.bundle.js:9358 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'parentNode')

오선지♬ 2022. 5. 24. 18:58
728x90
반응형

 

datatables를 사용해서 페이지를 만들다가 위와 같은 오류가 났다. 

원인 : columns의 data 개수 ( 열의 개수 )가 맞지 않을 때 ➡️ 이 경우가 제일 많은 거 같다. 구글링해본 결과 !

 

 들어오는 데이터 값이 없을 때 데이터 렌더링 과정에서 데이터를 넣어주는 방법을 사용하였다.

,{ className : "txr",
    "targets" : [6, 7],
       render : function ( data, type, row ) {
           if (data) {
                data= data.toFixed(1);
           } else {
               data = 0;
           }
                return data+ '%';
        },
       tfoot : true,
  }

 

728x90
반응형