js中Object的各项原生方法的集合

在js中一个Object可能是一组数据,一个组件,一个页面,一个项目,创建一个Object之后,是有一些内置的原生方法可以使用来管理整个Object里的所有内容的。

Object的各项原生方法:

js中直接使用Object.xxx来调用内置的方法,其中包括了对内部数据的增删改查、可遍历,获取状态,修改状态等进行配置,以及对这些配置进行限制和获取这些配置项的方法。

var obj = {
    name: 'obj_000',
    type: 'object',
    local: 'first',    
}

// 数据属性描述符,value,writable, configurable, enumerable属性
Object.defineProperty(obj, "index", {})

// 存取属性描述符, 不可使用value,writable属性,增加get(获取),set(编辑)两个函数
Object.defineProperty(obj, "index", {
    get: function() {

    },
    set: function (value) {
        
    }
})

// 批量设置属性描述符, 每个属性一个Object来配置
Object.defineProperties(obj, {
    name: {},
    type: {},
    local: {}
})

// 禁止对象继续添加新的属性
Object.preventExtensions(obj)

// 让属性不可以修改(writable: false)
Object.freeze(obj)

// 禁止对象配置和删除里面的属性
Object.seal(obj)

// 获取对象的属性描述符
Object.getOwnPropertyDescriptors(obj)
Object.getOwnPropertyDescriptors(obj, "name")

// 获取对象原型
Object.getPrototypeOf(obj)

各项原生方法的配置项:

配置Object中方法分为:批量配置和单个配置,也可以分为:数据属性描述和存取属性描述,可以根据不同的场景需求来使用。

1、数据属性描述符
var obj = {
   name: 'obj_000',
   type: 'object',
   local: 'first',    
}

// defineProperty方法会修改传入的对象
Object.defineProperty(obj, "index", {
   value: "1" , // 默认值undefined,设置属性值
   configurable: true, // 默认值false,是否可以删除
   enumerable: true, // 默认值false,是否是可以遍历
   writable: true // 默认值false,否是可以赋值
})

// 1、configurable设置false则无法删除
delete obj.index;
console.log(obj);


// 2、enumerable设置false则遍历不出来index
for (const k in obj) {
   console.log(obj[k]);
}

// 3、writable设置为false则无法给index赋值或修改数据
obj.index = '广州'
console.log(obj.index);


2、存取属性描述符
var obj = {
    name: 'obj_000',
    type: 'object',
    local: 'first',
    index: '0',
    index1: "1"
}

Object.defineProperty(obj, "index1", {
    enumerable: true, // 默认值false,是否是可以遍历
    configurable: true, // 默认值false,是否可以删除
    get: function() { // 获取该属性
        return this.index
    },
    set: function(value) { // 修改该属性     
        this.index = value
        foo()
        // vue2数据响应的方法,当index1被修改时index的数据也会做相同的变更
    }
})

obj.index1 = "3"
console.log(obj);

function foo() {
    console.log('响应了index的数据!');
}

3、批量设置属性描述符
var obj = {
    name: 'obj_000',
    type: 'object',
    local: 'first',
    _index: '0'   
}

Object.defineProperties(obj, {
    name: {
        configurable: true, // 默认值false,是否可以删除
        enumerable: true, // 默认值false,是否是可以遍历},
    },
    type: {
        configurable: false, // 默认值false,是否可以删除
        enumerable: false, // 默认值false,是否是可以遍历
        writable: false // 默认值false,否是可以赋值
    },
    local: {
        configurable: true, // 默认值false,是否可以删除
        enumerable: true, // 默认值false,是否是可以遍历},
    },
    index: {
        configurable: true,
        enumerable: true,
        get: function() {
          return this._index
        },
        set: function(value) {
          this._index = value
        }
    }
})

obj.type = "object1"
obj.name = "obj_001"

console.log("1、type:",obj.type, '2、name:', obj.name);
// 1、type: object 2、name: obj_001


for (const k in obj) {
    console.log(obj[k]);
    // obj_001
    // first
    // 0
    // 0
}

obj.index = 1
console.log(obj.index, obj._index); // 1 1
3、设置和调用Object原型链
function test(name, local) {
    this.name = name
    this.local = local
}

test.prototype.thing = function () {
    console.log(this.name+ "住在" + this.local);
}

var test1 = new test("张三", "昆明")
var test2 = new test("李四", "成都")

test1.thing() // 张三住在昆明
test2.thing() // 李四住在成都

console.log(test1);
3、原型链继承的封装
function Parent() {
    this.isName = 'Parent'
}
Parent.prototype.thing = function (value) {
   console.log(this.isName +"正在"+ value);
}

function inheritPrototype(ParentData, SubData) {
    function Fn() {}
    Fn.prototype = ParentData.prototype
    SubData.prototype = new Fn
    // SubData.prototype = Object.create(ParentData.prototype)
    Object.defineProperty(SubData.prototype, "constructor", {
        enumerable: false,
        configurable: true,
        writable: true,
        value: SubData
    })
}

function Sub() {
    this.isName = 'Sub'
}

inheritPrototype(Parent, Sub)

var s1 = new Parent
var s2 = new Sub

s1.thing('跑步') // Parent正在跑步
s2.thing('爬山') // Sub正在爬山
4、原型链属性判断的方法
var obj = {
  egg: "3",
}

var p1 = Object.create(obj, {
  address: {
    value: "sz"
  }
})

function foo() {
  
}

var p2 = new foo

// hasOwnProperty方法判断是否是自己原型上的属性
console.log(p1.hasOwnProperty("address")) // true
console.log(p1.hasOwnProperty("egg")) // false

// in 操作符: 不管在当前对象还是原型中返回的都是true
console.log("address" in p1) // true
console.log("egg" in p1) // true


// 返回整个原型对象
console.log(Object.getOwnPropertyDescriptors(foo.prototype))

// 构造函数的原型是否出现在实例对象的原型链上
console.log(p2 instanceof foo) // true
console.log(p1 instanceof foo) // false

5、继承内置类和混入
// 继承内置类
class HYArray extends Array {
  firstItem() {
    return this[0]
  }

  lastItem() {
    return this[this.length-1]
  }
}

var arr = new HYArray(1, 2, 3)
console.log(arr.firstItem())
console.log(arr.lastItem())
// 混入
class Person {

}

function mixinRunner(BaseClass) {
  class NewClass extends BaseClass {
    running() {
      console.log("running~")
    }
  }
  return NewClass
}

function mixinEater(BaseClass) {
  return class extends BaseClass {
    eating() {
      console.log("eating~")
    }
  }
}

// 在JS中类只能有一个父类: 单继承
class Student extends Person {

}

var NewStudent = mixinEater(mixinRunner(Student))
var ns = new NewStudent()
ns.running()
ns.eating()
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352

推荐阅读更多精彩内容