我们的项目正在使用Gulp。现在我有一个要求:我们有多个页面级 HTML 文件,比如 login.html
和 my.html
.在这些原始HTML文件中有一个名为{{PAGE_TITLE}}
的变量,它应该被替换(用Gulp
)分别"Login to System"
和"My Account"
。这是我当前的脚本:
gulp.task('pages', ['clean:tmp'], function () {
var pageTitle = '';
return gulp.src('/my/source/html/**/*.html')
.pipe(tap(function (file, t) {
pageTitle = /index.html$/.test(file.path) ? 'Login to System' : 'My Account';
}))
.pipe(replace(/{{PAGE_TITLE}}/g, pageTitle))
.pipe(gulp.dest('/my/dest/'));
});
事实证明,变量pageTitle
从未在replace
之前设置。我已经搜索了大量次gulp-tap
的文档,但我仍然不知道如何使其工作。请帮忙,谢谢。
这篇文章:使用 Gulp 就地修改文件(相同的目标.js通配模式试图达到相同的效果,但他产生了其他一些解决方案。
我想出了如下解决方案:
gulp.task('pages', ['clean:tmp'], function () {
function replaceDynamicVariables(file) {
var pageTitle = /login.html$/.test(file.path) ? 'Login to System' : 'My Account';
file.contents = new Buffer(String(file.contents)
.replace(/{{PAGE_TITLE}}/, pageTitle)
);
}
return gulp.src('/my/source/html/**/*.html')
.pipe(tap(replaceDynamicVariables))
.pipe(gulp.dest('/my/dest/'));
});