javascript – So exportieren Sie eine HTML-Datei mit gulp-ejs
PHP中文网
PHP中文网 2017-06-28 09:26:27
0
1
962

Warum exportiere ich immer noch solche .ejs

gulp.task('ejs', function() {

gulp.src('html/index.ejs')
    .pipe(ejs({},{ext: '.html'}))
.pipe(gulp.dest('./dist'));

});

PHP中文网
PHP中文网

认证高级PHP讲师

Antworte allen(1)
刘奇
gulp.task('ejs', function() {
    gulp.src('html/index.ejs')
        .pipe(ejs({},{},{ext: '.html'}))
        .pipe(gulp.dest('./dist'));
});

ejs(data, options, settings)

看官网,第二个参数是options,第三个参数才是settings,你上面那么写是把{ext: '.html'}赋值给options了。
官网地址

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage