8

我正在学习当前 gulp 的前端构建系统,我想使用 brower-sync 问题是它没有在命令行中抛出错误,而是当它启动浏览器时它不会显示我的 html 文件和它将在浏览器窗口中显示“Cannot GET /”错误。这是我的 gulpfile.js 代码

var gulp = require('gulp'),
   uglify = require('gulp-uglify'),
   compass= require('gulp-compass'),
   plumber = require('gulp-plumber'),
   autoprefixer = require('gulp-autoprefixer'),
   browserSync = require('browser-sync'),
   reload = browserSync.reload,
   rename = require('gulp-rename');


gulp.task('scripts', function() {
   gulp.src(['public/src/js/**/*.js', '!public/src/js/**/*.min.js'])
      .pipe(plumber())
      .pipe(rename({suffix: '.min'}))
      .pipe(uglify())
      .pipe(gulp.dest('public/src/js/'));
});

gulp.task('styles', function() {
   gulp.src('public/src/scss/main.scss')
      .pipe(plumber())
      .pipe(compass({
          config_file: './config.rb',
          css: './public/src/css/',
          sass: './public/src/scss/'
      }))
     .pipe(autoprefixer('last 2 versions'))
     .pipe(gulp.dest('public/src/css/'))
     .pipe(reload({stream:true}));
});


gulp.task('html', function() {
  gulp.src('public/**/*.html');
});  

gulp.task('browser-sync', function() {
    browserSync({
      server: {
         baseDir: "./public/"
      }
   });
});

gulp.task('watch', function() {
   gulp.watch('public/src/js/**/*.js', ['scripts']);
   gulp.watch('public/src/scss/**/*.scss', ['styles']);
   gulp.watch('public/**/*.html', ['html']);
});

gulp.task('default', ['scripts', 'styles', 'html', 'browser-sync', 'watch']);

我正在使用 windows 和 git bash 和版本是"browser-sync": "^2.12.5"什么问题并尝试为我解释以便从中得到一些东西。

4

8 回答 8

14

index.html你的./public/文件夹里有文件吗?如果没有,您需要告诉 browserSync 您的起始页是什么。您还可以让 browserSync 显示基本目录的列表,请参阅下面的更新。

您也可以尝试在public没有前导点的情况下使用。

编辑: startPath 配置指令似乎不起作用,index改用

...
gulp.task('browser-sync', function() {
   browserSync({
     server: {
        baseDir: "public/",
        index: "my-start-page.html"
     }
   });
});
...

更新:实际上您可以使用 browserSync 获取目录列表。这样它将显示文件列表public,而不是无法获取错误

...
gulp.task('browser-sync', function() {
   browserSync({
     server: {
        baseDir: "public/",
        directory: true
     }
   });
});
...
于 2017-03-23T11:24:41.107 回答
6

当 index.html 文件在同一个文件夹中时,我得到了这个工作:

    browserSync.init({
        server: {
            baseDir: "./"
        }
    });
于 2017-03-02T18:31:07.827 回答
4
gulp.task('browser-sync', function() {
    browserSync({

      server: {
            baseDir: "./"
            },

            port: 8080,
            open: true,
            notify: false
    });
});
于 2017-11-01T20:46:16.587 回答
1
gulp.task('serve',['sass'], function() {
    bs.init({
        server: "./app",
        startPath: "/index.html", // After it browser running
        browser: 'chrome',
        host: 'localhost',
        port: 4000,
        open: true,
        tunnel: true
    });
于 2017-10-14T15:33:24.580 回答
0

我通过始终指向代码中的 .html 文件或使用以 index.html 结尾的文件夹结构解决了浏览器同步中的“无法获取”错误

<a href="/about">About</a> <!-- Cannot GET error-->
<a href="/about">About</a> <!-- same code as above, but works if your site structure is:  ./about/index.html-->
<a href="/about.html">About</a> <!-- OK -->

我的 Gulp 文件供参考(使用 jekyll 的浏览器同步,所以所有内容都在 ./_site 文件夹中,gulpfile 在 ./ 中)

var gulp = require('gulp');
var shell = require('gulp-shell');
var browserSync = require('browser-sync').create();

gulp.task('build', shell.task(['jekyll build --watch']));

// serving blog with Browsersync
gulp.task('serve', function () {
    browserSync.init(
        {
            server: {baseDir: '_site/'}
        }
    );

    // Reloads page when some of the already built files changed:
    gulp.watch('_site/**/*.*').on('change', browserSync.reload);
});

gulp.task('default', ['build', 'serve']);

希望能帮助到你。

米开朗基罗

于 2016-10-06T09:38:52.993 回答
0

可能你还没index.html进去baseDir: '_site/'?为了在网络浏览器中看到您的静态网页而不是烦人的消息,您必须将文件重命名your_file.htmlindex.html. 这将解决无法 GET/ 问题。

于 2017-02-26T13:26:22.697 回答
0

就我而言,这对我有帮助:

server: {
            baseDir: '.',
            index: "index.html"
        }
于 2019-10-29T20:42:35.863 回答
0
gulp.task('server', function()
{
        browserSync.init(["public/src/css/","public/src/js"],{ 
            server: "./",
            startPath: "./index.html", // After it browser running
            //    browser: 'chrome',
            host: 'localhost',
            //       port: 4000,
            open: true,
            tunnel: true    }); 
});
gulp.task('default', ['scripts', 'styles', 'html', 'server', 'watch']);
于 2019-11-24T00:36:17.957 回答