ES6環境搭建及react-router學習

1、原由javascript

ES6新歸入了不少振奮人心的新特性,真的很讓人忍不住去嘗試一下。不過,因爲如今大部分的瀏覽器對ES6的支持程度都不是很好。因此若是想要放心地使用一些新特性,還須要用一些工具,將ES6或者ES7的代碼轉爲ES5的代碼。今天,就配置了一下環境,寫了一個react-router,主要是練習本身的編程能力,哈哈。。。在此分享一下!css

2、ES6環境搭建java

搭建環境的工具備不少種,jspm,webpack,gulp等等。。。我主要是採用gulp+babel+browserify來搭建的。具體步驟以下(如下步驟均在node環境下進行):node

①新建項目,打開命令行或者git hash,輸入git init.react

②安裝gulp,輸入npm install gulpwebpack

③安裝一些必須的插件,看我的須要吧。我安裝了一些: babel-preset-es2015 browserify gulp-babel gulp-concat gulp-cssnano gulp-uglify vinyl-source-stream gulp-sassgit

④配置gulpfile文件。github

文件目錄結構以下:web

個人配置以下:npm

const gulp = require('gulp');
const babel = require('gulp-babel');
const uglify = require('gulp-uglify');
const sass = require('gulp-sass');
const rename = require('gulp-rename');
const cssnano = require('gulp-cssnano');
const concat = require('gulp-concat');
const browserify = require('browserify');
const babelify=require('babelify');
const source = require('vinyl-source-stream');
// 編譯並壓縮js
gulp.task('convertJS', function(){
  return gulp.src('app/js/*.js')
    .pipe(babel({
      presets: ['es2015','react']
    }))
    .pipe(uglify())
    .pipe(gulp.dest('dist/js'))
})
// 合併並壓縮css
gulp.task('convertCSS', function(){
  return gulp.src('app/style/*.scss')
    .pipe(sass())
    .pipe(concat('app.css'))
    .pipe(cssnano())
    .pipe(rename(function(path){
      path.basename += '.min';
    }))
    .pipe(gulp.dest('dist/style'));
})
// 監視文件變化,自動執行任務
gulp.task('watch', function(){
  gulp.watch('app/style/*.scss', ['convertCSS']);
  gulp.watch('app/js/*.js', ['convertJS', 'browserify']);
})
// browserify
gulp.task("browserify", function () {
    var b = browserify({
        entries: "dist/js/app.js"
    });
    return b.transform(babelify)
       .bundle()
        .pipe(source("bundle.js"))
        .pipe(gulp.dest("dist/js"));
});
gulp.task('start', ['convertJS', 'convertCSS', 'browserify', 'watch']);

 

注意,即便這些都安裝好了,運行gulp命令的時候仍是會報一個未定義babel對象的錯,如圖:

一開始我也不知道爲何,我把編譯ES6的環境單獨出來(也就是把react相關的內容和插件註釋掉),發現是可行的。因此問題就出在編譯react的時候了。最終在stackoverflow上面找到了答案。

大概的意思就是,babel在編譯react的時候,有一個插件被分離了出來,須要另外安裝,相似於補丁之類的東西吧!按照上面這個說法,我又去安裝了一下這個,發現真的能夠了,不報錯了^_^。至此,環境準備好了。

3、路由搭建

 首先,你能夠點擊這裏,對react-route有進一步的瞭解。

其實,只是搭建環境比教耗費時間,搭路由參考官方的例子的話卻是很快的。我就寫了一個hello world級別的路由。以下代碼:

import React from 'react';
import ReactDOM from 'react-dom';
import { hashHistory, Route, Router } from 'react-router';
import { render } from 'react-dom'

import List from './list';

class Photo extends React.Component {
  render() {
    return <p>hello, winty!</p>
  }
}

render((
    <Router history={hashHistory}>
      <Route path="/" component={Photo}/>
      {/* add the routes here */}
      <Route path="/list" component={List}/>
    </Router>
), document.getElementById('app'));

引入的List模塊代碼以下:

import React from 'react'

class List extends React.Component {
    render() {
        return <div>hello,List</div>
    }
}

正當我爲寫這麼水的程序而很差意思的時候,打開瀏覽器,居然。。。

真的就輸出了hello,winty!

好吧。我F12打開控制檯的時候,很傷心,報了兩個警告:

最傷心的是,我各類找資料,都沒有找到解釋、各類羣上問,都沒有人知道的回覆我。。。

 

 

好吧,抱着警告不影響運行的態度,我嘗試改變url,經過路由跳到list那裏去。。。

然而。。。

結果又亮瞎了。。。

結果什麼都沒有,還報錯了。。。容我靜靜啊。。。

因而我又一次各類查、各類查、各類問、各類問。。。

原本想問清楚了,再來寫這個博客,然而。。。仍是解決不了。。。因而只能到這裏來求助了。。。

博客園的大神們。。。有人能夠解釋一下嗎?

詳細代碼點這裏!

 

 

 PS:想練習ES6的新特性,又不知道該怎樣搭環境的人能夠參考gulpfile的代碼哦。。。

相關文章
相關標籤/搜索