91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

前端開發之ES6特性有哪些

發布時間:2021-08-20 11:37:34 來源:億速云 閱讀:164 作者:小新 欄目:web開發

這篇文章主要介紹了前端開發之ES6特性有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

下面是10個ES6最佳特性,排名不分先后:

  • 函數參數默認值

  • 模板字符串

  • 多行字符串

  • 解構賦值

  • 對象屬性簡寫

  • 箭頭函數

  • Promise

  • Let與Const

  • 模塊化

  • 函數參數默認值

  • 不使用ES6

為函數的參數設置默認值:

function foo(height, color)
{
 var height = height || 50;
 var color = color || 'red';
 //...
}

這樣寫一般沒問題,但是,當參數的布爾值為false時,是會出事情的!比如,我們這樣調用foo函數:

foo(0, "", "")

因為0的布爾值為false,這樣height的取值將是50。同理color的取值為‘red'。

使用ES6

function foo(height = 50, color = 'red')
{
 // ...
}

模板字符串

不使用ES6

使用+號將變量拼接為字符串:

var name = 'Your name is ' + first + ' ' + last + '.'

使用ES6

將變量放在大括號之中:

var name = `Your name is ${first} ${last}.`

ES6的寫法更加簡潔、直觀。

多行字符串

不使用ES6

使用“\n\t”將多行字符串拼接起來:

var roadPoem = 'Then took the other, as just as fair,\n\t'
 + 'And having perhaps the better claim\n\t'
 + 'Because it was grassy and wanted wear,\n\t'
 + 'Though as for that the passing there\n\t'
 + 'Had worn them really about the same,\n\t'

使用ES6

將多行字符串放在反引號“之間就好了:

var roadPoem = `Then took the other, as just as fair,
 And having perhaps the better claim
 Because it was grassy and wanted wear,
 Though as for that the passing there
 Had worn them really about the same,`

解構賦值

不使用ES6

當需要獲取某個對象的屬性值時,需要單獨獲取:

var data = $('body').data(); // data有house和mouse屬性
var house = data.house;
var mouse = data.mouse;

使用ES6

一次性獲取對象的子屬性:

var { house, mouse} = $('body').data()

對于數組也是一樣的:

var [col1, col2] = $('.column');

對象屬性簡寫

不使用ES6

對象中必須包含屬性和值,顯得非常多余:

var bar = 'bar';
var foo = function ()
{
 // ...
}
var baz = {
 bar: bar,
 foo: foo
};

使用ES6

對象中直接寫變量,非常簡單:

var bar = 'bar';
var foo = function ()
{
 // ...
}
var baz = { bar, foo };

箭頭函數

不使用ES6

普通函數體內的this,指向調用時所在的對象。

function foo() 
{
 console.log(this.id);
}
var id = 1;
foo(); // 輸出1
foo.call({ id: 2 }); // 輸出2

使用ES6

箭頭函數體內的this,就是定義時所在的對象,而不是調用時所在的對象。

var foo = () => {
 console.log(this.id);
}
var id = 1;
foo(); // 輸出1
foo.call({ id: 2 }); // 輸出1

Promise

不使用ES6

嵌套兩個setTimeout回調函數:

setTimeout(function()
{
 console.log('Hello'); // 1秒后輸出"Hello"
 setTimeout(function()
 {
  console.log('Fundebug'); // 2秒后輸出"Fundebug"
 }, 1000);
}, 1000);

使用ES6

使用兩個then是異步編程串行化,避免了回調地獄:

var wait1000 = new Promise(function(resolve, reject)
{
 setTimeout(resolve, 1000);
});
wait1000
 .then(function()
 {
  console.log("Hello"); // 1秒后輸出"Hello"
  return wait1000;
 })
 .then(function()
 {
  console.log("Fundebug"); // 2秒后輸出"Fundebug"
 });

Let與Const

使用Var

var定義的變量未函數級作用域:

{
 var a = 10;
}
console.log(a); // 輸出10

使用let與const

let定義的變量為塊級作用域,因此會報錯:(如果你希望實時監控JavaScript應用的錯誤,歡迎免費使用Fundebug)

{
 let a = 10;
}
console.log(a); // 報錯“ReferenceError: a is not defined”

const與let一樣,也是塊級作用域。

不使用ES6

使用構造函數創建對象:

function Point(x, y)
{
 this.x = x;
 this.y = y;
 this.add = function()
 {
  return this.x + this.y;
 };
}
var p = new Point(1, 2);
console.log(p.add()); // 輸出3

使用ES6

使用Class定義類,更加規范,且你能夠繼承:

class Point
{
 constructor(x, y)
 {
  this.x = x;
  this.y = y;
 }
 add()
 {
  return this.x + this.y;
 }
}
var p = new Point(1, 2);
console.log(p.add()); // 輸出3

模塊化

JavaScript一直沒有官方的模塊化解決方案,開發者在實踐中主要采用CommonJS和AMD規范。而ES6制定了模塊(Module)功能。

不使用ES6

Node.js采用CommenJS規范實現了模塊化,而前端也可以采用,只是在部署時需要使用Browserify等工具打包。這里不妨介紹一下CommenJS規范。

module.js中使用module.exports導出port變量和getAccounts函數:

module.exports = {
 port: 3000,
 getAccounts: function() {
 ...
 }
}

main.js中使用require導入module.js:

var service = require('module.js')
console.log(service.port) // 輸出3000

使用ES6

ES6中使用export與import關鍵詞實現模塊化。

module.js中使用export導出port變量和getAccounts函數:

export var port = 3000
export function getAccounts(url) {
 ...
}

main.js中使用import導入module.js,可以指定需要導入的變量:

import {port, getAccounts} from 'module'
console.log(port) // 輸出3000

也可以將全部變量導入:

import * as service from 'module'
console.log(service.port) // 3000

感謝你能夠認真閱讀完這篇文章,希望小編分享的“前端開發之ES6特性有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

es6
AI

万盛区| 沾化县| 贵南县| 隆昌县| 略阳县| 南雄市| 蕲春县| 郎溪县| 屏边| 泸西县| 汝州市| 辽阳县| 景谷| 东乌珠穆沁旗| 建始县| 和顺县| 新田县| 大荔县| 伊金霍洛旗| 中山市| 会理县| 新乐市| 阿拉善盟| 长寿区| 元朗区| 柯坪县| 盐池县| 中西区| 南溪县| 正阳县| 宁远县| 南昌市| 财经| 德昌县| 尉氏县| 枞阳县| 手游| 青神县| 嫩江县| 呼图壁县| 汨罗市|