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

溫馨提示×

溫馨提示×

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

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

JavaScript解構賦值的常見場景有哪些

發布時間:2021-11-02 15:44:03 來源:億速云 閱讀:129 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“JavaScript解構賦值的常見場景有哪些”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“JavaScript解構賦值的常見場景有哪些”這篇文章吧。

1. 提取數據

先來看看如何在 JavaScript 中解構對象,可以從這個商品對象的簡單示例開始。

const product = {
    id: 1,
    title: "Nike Air Zoom Pegasus 38",
    product_image: "/resources/products/01.jpeg",
    shown: "White/Pure Platinum/Midnight Navy/Wolf Grey",
    price: 120,
};
const { id, price, title } = product;

這樣,就可以通過以下方式訪問相應的屬性:

console.log(id); // 1
console.log(price); // 120
console.log(title); // Nike Air Zoom Pegasus 38

解構,能夠讓代碼更加清晰簡潔。如果需要解構一個更復雜的對象呢?即對象中的對象。

現在假設需要從商品列表數據中獲取其中一個商品的屬性,如下:

const products = [
    {
        id: 1,
        title: "Nike Air Zoom Pegasus 38",
        price: 120,
    },
    {
        id: 2,
        title: "Nike Air Zoom Alphafly NEXT%",
        price: 275,
    },
    {
        id: 3,
        title: "Nike Zoom Fly 4",
        price: 89.0,
    },
];

在這里,產品列表嵌套了幾層,需要訪問商品的信息,可以解構盡可能多的級別以獲取商品對象的屬性。

const [tmp, { id, title, price }] = products;
console.log(id); // 2
console.log(title); // Nike Air Zoom Alphafly NEXT%
console.log(price); // 275

上面的代碼僅用于展示其用法,項目開發中不建議再數組中這樣獲取對象信息。

通常,數據列表不一定非要數組,從獲取效率來說,map 對象的訪問比數組效率要高。可以將上面的數據改為 map 對象,如下:

const products = {
    1: {
        title: "Nike Air Zoom Pegasus 38",
        price: 120,
    },
    2: {
        title: "Nike Air Zoom Alphafly NEXT%",
        price: 275,
    },
    3: {
        title: "Nike Zoom Fly 4",
        price: 89.0,
    },
};
const {
    2: { id, title, price },
} = products;
console.log(id); // 2
console.log(title); // Nike Air Zoom Alphafly NEXT%
console.log(price); // 275

在 JavaScript 中,數據可以是變量和方法,因此解構賦值也適合用在函數參數的定義,如下:

const printArticle = ({ title, remark }) => {
    console.log(title);
    console.log(remark);
};
printArticle({
    title: "JavaScript 解構賦值",
    remark: "解構賦值的實用場景介紹",
});

在使用 React 或 Vue 等框架時,有很多解構賦值的地方,如方法的引入等等。

2. 別名取值

如果想創建與屬性名稱不同的變量,那么可以使用對象解構的別名功能。

const { identifier: aliasIdentifier } = expression;

identifier 是要訪問的屬性的名稱,aliasIdentifier 是變量名稱。具體用法如下:

const products = {
    1: {
        title: "Nike Air Zoom Pegasus 38",
        price: 120,
    },
    2: {
        title: "Nike Air Zoom Alphafly NEXT%",
        price: 275,
    },
    3: {
        title: "Nike Zoom Fly 4",
        price: 89.0,
    },
};
const {
    2: { price: productPrice },
} = products;

console.log(productPrice); // 275

3. 動態屬性

可以使用動態名稱提取到變量屬性(屬性名稱在運行時已知):

const { [propName]: identifier } = expression;

propName 表達式應計算為屬性名稱(通常是字符串),標識符應指示解構后創建的變量名稱,用法如下:

const products = {
    1: {
        title: "Nike Air Zoom Pegasus 38",
        price: 120,
    },
    2: {
        title: "Nike Air Zoom Alphafly NEXT%",
        price: 275,
    },
    3: {
        title: "Nike Zoom Fly 4",
        price: 89.0,
    },
};
const productKey = "1";
const { [productKey]: product } = products;
console.log(product); // { title: 'Nike Air Zoom Pegasus 38', price: 120 }

上面代碼中,可以通過更新 productKey 的值進而使得 product 的值也跟隨變化。

4. 對象解構中的 Rest

將 rest 語法添加到解構中,Rest 屬性收集那些尚未被解構模式拾取的剩余可枚舉屬性鍵。

const { identifier, ...rest } = expression;

解構后,變量標識符包含屬性值。 rest 變量是一個具有其余屬性的普通對象。

const product = {
    title: "Nike Air Zoom Pegasus 38",
    price: 120,
    quantity: 5,
    category_id: 1,
    reviews: 9830,
    total: 45,
};
const { title, ...others } = product;
console.log(others); // { price: 120, quantity: 5, category_id: 1, reviews: 9830, total: 45 }

對于數組,可以通過 Rest 的實現首尾值的獲取:

const numbers = [1, 2, 3];
const [head, ...tail] = numbers;
console.log(head); // 1
console.log(tail); // [ 2, 3 ]

5. 默認值

正如前面介紹的那樣可以在解構數組時為其分配默認值:

const RGBA = [255, 34];
const [R, G, B = 0, A = 1] = RGBA;
console.log(R); // 255
console.log(G); // 34
console.log(B); // 0
console.log(A); // 1

這樣,可以將確保在 B、A 未定義的情況下有一個默認值。

以上是“JavaScript解構賦值的常見場景有哪些”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

邵东县| 镇赉县| 江北区| 股票| 平遥县| 霸州市| 通化市| 新平| 桐梓县| 瑞昌市| 贵南县| 九龙坡区| 分宜县| 凤山县| 黄骅市| 乡城县| 凌源市| 成都市| 黄陵县| 桃园市| 临猗县| 牙克石市| 黄石市| 昆明市| 九龙县| 长阳| 昌平区| 新河县| 离岛区| 中西区| 大方县| 花垣县| 海门市| 汽车| 饶平县| 黄山市| 和平区| 永胜县| 宜兴市| 佛学| 北流市|