本篇內(nèi)容主要講解“怎么理解js對(duì)象模式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“怎么理解js對(duì)象模式”吧!
創(chuàng)新互聯(lián)建站專注于喀左網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供喀左營銷型網(wǎng)站建設(shè),喀左網(wǎng)站制作、喀左網(wǎng)頁設(shè)計(jì)、喀左網(wǎng)站官網(wǎng)定制、微信小程序服務(wù),打造喀左網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供喀左網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
1、匹配對(duì)象。如果有省略號(hào),對(duì)象可以有更多的屬性。
2、只檢測自己的屬性(Object.keys),忽略原型中的屬性。對(duì)象語法支持特殊識(shí)別屬性,快速屬性,屬性不支持尾逗號(hào)。
實(shí)例
test("value object", () => { let input = '{}' let y = match(input) let v = y({}) let w = y({ x: 0 }) expect(v).toEqual(true) expect(w).toEqual(false) }) test("object ELLIPSIS", () => { let input = '{...}' let y = match(input) let v = y({}) let w = y({ x: 0 }) let p = y([]) expect(v).toEqual(true) expect(w).toEqual(true) expect(p).toEqual(false) }) test("object properties", () => { let input = '{x}' let y = match(input) let v = y({ x: 0 }) let w = y([null, 1]) expect(v).toEqual(true) expect(w).toEqual(false) }) test("object properties ELLIPSIS", () => { let input = '{x,...}' let y = match(input) let v = y({ x: 0, y: 1 }) let w = y({}) expect(v).toEqual(true) expect(w).toEqual(false) }) test("properties properties prop", () => { let input = '{x,y}' let y = match(input) let v = y({ x: 0, y: 1 }) let w = y({}) expect(v).toEqual(true) expect(w).toEqual(false) }) test("prop key value", () => { let input = '{x:null}' let y = match(input) let v = y({ x: null }) let w = y([null, 1]) expect(v).toEqual(true) expect(w).toEqual(false) }) test("key QUOTE", () => { let input = '{"1":null}' let y = match(input) let v = y({ '1': null }) let w = y([null, 1]) expect(v).toEqual(true) expect(w).toEqual(false) })
到此,相信大家對(duì)“怎么理解js對(duì)象模式”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!