美文网首页
解析excel的方案

解析excel的方案

作者: moxhuis | 来源:发表于2015-09-09 14:29 被阅读0次

    早上的时候想做个东西把产品给的execl 纬度表,转成json。

    方案有很多:

    1.转成cvs,导入到mysql 数据库里去。
    2.nodejs npm包去解析。(有些包其实是机遇python的)
    3.gulp作处理。
    最终选择了 gulp-excel2html

    var gulp = require('gulp');
    var excel2html = require('gulp-excel2html');
    gulp.task('jshtml', function() {
      gulp.src('weidu.xlsx')
      .pipe(excel2html({
          tmplFile:'foo_template.html',
          resultFile:'result.html',
          dataHandle:function(excel){
              //handle excel data and return something
              var sheet1 = excel.shift(),
                    // 读取行数据
                    rows = sheet1.data;
                return {
                    rows:rows,
                    getName:function(){
                        return this;
                    }
                };
          }
      }))
      .pipe(gulp.dest('./'));
    });
    gulp.task('default', ['jshtml']);
    

    相关文章

      网友评论

          本文标题:解析excel的方案

          本文链接:https://www.haomeiwen.com/subject/zahpcttx.html