国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Vue 2.0 入門系列(15)學習 Vue.js 需要掌握的 es6 (2)

vslam / 1658人閱讀

摘要:如果要使其生效的話,在不使用第三方庫的情況下,只能將兩個文件同時引入這樣做的話,我們將無法看到彼此間的關聯加載因此,提供了解決方案,即模塊。這里簡單的舉兩個。

類與模塊

es6 之前,通常使用構造函數來創建對象

// 構造函數 User
function User(username, email) {
    this.username = username;
    this.email = email;
}

// 為了讓實例共享方法,將其添加到原型上
User.prototype.changeEmail = function(newEmail) {
    this.email = newEmail;
}

// 使用
let user = new User("zen", "ihuangmx@qq.com")
user.changeEmail("change@qq.com");
console.log(user.email); //=> "change@qq.com"

es6 則可以寫成

class User {
    // 實例化時,調用 constructor 方法,默認返回 this
    constructor(username, email) {
        this.username = username;
        this.email = email;
    }

    // 類的所有方法會自動綁定到原型對象上,包括 constructor
    changeEmail(newEmail) {
        this.email = newEmail;
    }
}

// 使用
let user = new User("zen", "ihuangmx@qq.com")
user.changeEmail("change@qq.com");
console.log(user.email); //=> "change@qq.com"

類中可以定義靜態方法,也可以使用 getset 進行訪問控制:

class User {
    constructor(username, email) {
        this.username = username;
        this.email = email;
    }

    changeEmail(newEmail) {
        this.email = newEmail;
    }

    static register(...args) {
        return new User(...args);
    }

    // 等價
    // static register(username, email) {
    //     return new User(username, email);
    // }

    get info() {
        return this.username + " " + this.email;
    }

    //  首字符大寫
    set name(name) {
        this.username = name.slice(0,1).toUpperCase().concat(name.slice(1));
    }

    
}

// 使用
let user = User.register("zen", "ihuangmx@qq.com")
console.log(user.info)  // zen ihuangmx@qq.com
user.name = "jack" 
console.log(user.info)  // Jack ihuangmx@qq.com

類可以作為參數進行傳遞:

function log(strategy) {
    strategy.handle();
}

class ConsoleLogger {
    handle() {
        console.log("log log log");
    }
}

log(new ConsoleLogger);  //=> log log log
模塊

TaskCollection.js 中定義一個類

class TaskCollection {
    constructor(tasks = []) {
        this.tasks = tasks;
    }

    dump() {
        console.log(this.tasks);
    }
}

main.js 中使用該類

const tc = new TaskCollection([
    "shop",
    "eat",
    "sleep"
]);

tc.dump();

index.html - 顯示頁面。如果要使其生效的話,在不使用第三方庫的情況下,只能將兩個文件同時引入




    
    Document



    
    


這樣做的話,我們將無法看到彼此間的關聯(main.js 加載 TaskCollection.js),因此,es6 提供了解決方案,即模塊。通過 exportimport 來實現

TaskCollection.js - 使用 export 命令顯式指定輸出的代碼

// 輸出類
export class TaskCollection {
    constructor(tasks = []) {
        this.tasks = tasks;
    }

    dump() {
        console.log(this.tasks);
    }
}

// 輸出函數
export function foo(){
    console.log("foo");
}

// 輸出變量
export let bar = 123;


// 可以統一輸出,使其一目了然
// export {TaskCollection, foo, bar};

main.js - 使用 import 加載模塊

import { TaskCollection, foo, bar as bar1 } from "./TaskCollection";

const tc = new TaskCollection([
    "shop",
    "eat",
    "sleep"
]);

tc.dump();
foo();
console.log(bar1); 

index.html - 只需要引用 main.js




    
    Document



    

由于當前的瀏覽器還不支持 es6 語法,我們可以使用打包工具。這里簡單的舉兩個。

rollup.js

全局安裝

$ cnpm install --global rollup

使用

$ rollup main.js --format iife --output bundle.js  # 針對客戶端指定格式為 iife

然后只需要引用生成的 bundle.js

index.html




    
    Document



    

webpack

安裝

$ cnpm install -g webpack

打包

$ webpack main.js bundle.js

或者在當前項目下使用

$ cd webpack-demo-2
$ cnpm install webpack --save-dev

建立配置文件并設置

/webpack-demo-2/webpack.config.js

var webpack = require("webpack");

module.exports = {
    entry: "./main.js",
    output: {
        filename: "./dist/main.js"
    }
}

打包

$ webpack

通常是將其加入到 package.json

webpack-demo-2/package.json
{
  "devDependencies": {
    "webpack": "^2.5.1"
  },
  "scripts": {
      "build": "webpack"
  }
}

現在,只需要運行

$ cnpm run build
轉換 js

可以注意到,rollupwebpack 都僅僅是將其打包,并沒有轉化為兼容的 js

// 部分打包后的代碼
// dist/main.js
"use strict";
/* harmony export (immutable) */ __webpack_exports__["b"] = foo;
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return bar; });
// export 命令顯式指定輸出的代碼
// 輸出類
class TaskCollection {
    constructor(tasks = []) {
        this.tasks = tasks;
    }

    dump() {
        console.log(this.tasks);
    }
}

這里以 webpack 為例,講解如何轉化為兼容的 js,首先安裝相關工具

$ cnpm install --save-dev buble-loader buble

添加

/webpack-demo-2/webpack.config.js

var webpack = require("webpack");

module.exports = {
    entry: "./main.js",
    output: {
        filename: "./dist/main.js"
    },
    module: {
      loaders: [
        {
          test: /.js$/,
          loaders: "buble-loader"
        }
      ]
    }
}

執行

$ cnpm run build

現在,可以發現已經轉化為兼容的 js 了

"use strict";
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return TaskCollection; });
/* harmony export (immutable) */ __webpack_exports__["b"] = foo;
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return bar; });
// export 命令顯式指定輸出的代碼
// 輸出類
var TaskCollection = function TaskCollection(tasks) {
    if ( tasks === void 0 ) tasks = [];

    this.tasks = tasks;
};

TaskCollection.prototype.dump = function dump () {
    console.log(this.tasks);
};

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/83306.html

相關文章

  • 前端資源系列(4)-前端學習資源分享&前端面試資源匯總

    摘要:特意對前端學習資源做一個匯總,方便自己學習查閱參考,和好友們共同進步。 特意對前端學習資源做一個匯總,方便自己學習查閱參考,和好友們共同進步。 本以為自己收藏的站點多,可以很快搞定,沒想到一入匯總深似海。還有很多不足&遺漏的地方,歡迎補充。有錯誤的地方,還請斧正... 托管: welcome to git,歡迎交流,感謝star 有好友反應和斧正,會及時更新,平時業務工作時也會不定期更...

    princekin 評論0 收藏0
  • 前端相關大雜燴

    摘要:希望幫助更多的前端愛好者學習。前端開發者指南作者科迪林黎,由前端大師傾情贊助。翻譯最佳實踐譯者張捷滬江前端開發工程師當你問起有關與時,老司機們首先就會告訴你其實是個沒有網絡請求功能的庫。 前端基礎面試題(JS部分) 前端基礎面試題(JS部分) 學習 React.js 比你想象的要簡單 原文地址:Learning React.js is easier than you think 原文作...

    fuyi501 評論0 收藏0
  • 個人分享--web前端學習資源分享

    摘要:前言月份開始出沒社區,現在差不多月了,按照工作的說法,就是差不多過了三個月的試用期,準備轉正了一般來說,差不多到了轉正的時候,會進行總結或者分享會議那么今天我就把看過的一些學習資源主要是博客,博文推薦分享給大家。 1.前言 6月份開始出沒社區,現在差不多9月了,按照工作的說法,就是差不多過了三個月的試用期,準備轉正了!一般來說,差不多到了轉正的時候,會進行總結或者分享會議!那么今天我就...

    sherlock221 評論0 收藏0
  • 前端文檔收集

    摘要:系列種優化頁面加載速度的方法隨筆分類中個最重要的技術點常用整理網頁性能管理詳解離線緩存簡介系列編寫高性能有趣的原生數組函數數據訪問性能優化方案實現的大排序算法一怪對象常用方法函數收集數組的操作面向對象和原型繼承中關鍵詞的優雅解釋淺談系列 H5系列 10種優化頁面加載速度的方法 隨筆分類 - HTML5 HTML5中40個最重要的技術點 常用meta整理 網頁性能管理詳解 HTML5 ...

    jsbintask 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<