js 에서 액셀 파일 샘플 (excel sample) 생성하기
xlsx 를 서버에서 poi 로 생성하려는 고정 관념이 너무세개 박혔었다. 이 두개면 충분 할 것을 ;;; 참고 npm install xlsx file-saver -S npm install script-loader -S -D , async downloadByQuestionExcelSample (){ import('@/vendor/Export2Excel').then(excel => { const tHeader = ['Id', 'Title', 'Author', 'Readings', 'Date'] const filterVal = ['id', 'title', 'author', 'pageviews', 'display_time'] const list = [{id : 1, title : 'binsoo' , autho..
lodash remove
참고 사이트 let x = [1, 2, 3, 4, 5]; let even = _.remove(x, function(n) { return n % 2 == 0; }); console.log('Origianal Array ', x); console.log('Removed element array ', even); Origianal Array [ 1, 3, 5 ] Removed element array [ 2, 4 ]