CotalkerPartners / mongo-xlsx

Convert Mongo data into Excel and vice versa @ Node.js. MongoDB Mongoose Dump to excel.
MIT License
99 stars 28 forks source link

set export file name #20

Open geyuqiu opened 6 years ago

geyuqiu commented 6 years ago

Is there a way to declare in "options" the file name to be exported ?

Sidd27 commented 6 years ago

You use like below

 mongoXlsx.mongoData2Xlsx(res, model, {
      'fileName': location + radius + '.xlsx'
    }, function (err, data) {
      console.log('File saved at:', data.fullPath);
    });