鍍金池/ 問(wèn)答/網(wǎng)絡(luò)安全  HTML/ new.target是es6特性?? 這兩處分別代表啥

new.target是es6特性?? 這兩處分別代表啥

請(qǐng)教
let PersonType2 = (function() {

"use strict";
const PersonType2 = function(name) {
    // 確認(rèn)函數(shù)被調(diào)用時(shí)使用了 new
    if (typeof new.target === "undefined") {
        // 這兩處new.target分別代表啥
        throw new Error("Constructor must be called with new.");
    }
    this.name = name;
}
Object.defineProperty(PersonType2.prototype, "sayName", {
    value: function() {
        // 確認(rèn)函數(shù)被調(diào)用時(shí)沒(méi)有使用 new
        if (typeof new.target !== "undefined") {
            // 這兩處new.target分別代表啥
            throw new Error("Method cannot be called with new.");
        }
        console.log(this.name);
    },
    enumerable: false,
    writable: true,
    configurable: true
});
return PersonType2;

}());

回答
編輯回答
大濕胸

new.target屬性允許你檢測(cè)函數(shù)或構(gòu)造方法是否是通過(guò)new運(yùn)算符被調(diào)用的。在通過(guò)new運(yùn)算符被初始化的函數(shù)或構(gòu)造方法中,new.target返回一個(gè)指向構(gòu)造方法或函數(shù)的引用。在普通的函數(shù)調(diào)用中,new.target 的值是undefined。

new.target語(yǔ)法由一個(gè)關(guān)鍵字"new",一個(gè)點(diǎn),和一個(gè)屬性名"target"組成。通常"new."的作用是提供屬性訪問(wèn)的上下文,但這里"new."其實(shí)不是一個(gè)真正的對(duì)象。不過(guò)在構(gòu)造方法調(diào)用中,new.target指向被new調(diào)用的構(gòu)造函數(shù),所以"new."成為了一個(gè)虛擬上下文。

new.target屬性是一個(gè)可以被所有函數(shù)訪問(wèn)的元屬性。在箭頭函數(shù)中,new.target指向外圍函數(shù)的new.target。

2017年1月10日 07:52