Giter Club home page Giter Club logo

gulp-include-html's Introduction

whxaxes's GitHub stats

🚀🚀🚀🚀🚀

gulp-include-html's People

Contributors

whxaxes avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

gulp-include-html's Issues

监听全部 html 文件时并传递参数会报错

由于需要监听到每个 html 文件改动并执行 include html 操作,所以我监听了所有的 html 文件。

var gulp = require('gulp');
var include = require('gulp-include-html');

var files = './src/**/*.html';

gulp.task('include', function() {
  return gulp.src(files)
    .pipe(include())
    .pipe(gulp.dest('./dist'));
});

gulp.task('watch', function() {
  gulp.watch(files, ['include']);
});

但是我在 html 中传递了参数,代码如下:

index.html

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>demo</title>
</head>
<body>
  @@include('./test/header.html', {
    contents: 'wabish'
  });
</body>
</html>

test/header.html

<ul>
  <li>gulp</li>
  <li>grunt</li>
  <li><%= contents %></li>
</ul>

此时 console 会报参数没找到的错误:

qq 20161205141901

请问你是否有遇到此问题并解决?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.