zoukankan      html  css  js  c++  java
  • vue--defineProperty

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
        
    </body>
    <script>
        var o = {}; // 创建一个新对象

    // 在对象中添加一个属性与数据描述符的示例
    // Object.defineProperty(o, "a", {
    //   value : 37,
    //   writable : true,
    //   enumerable : true,
    //   configurable : true
    // });

    // 对象o拥有了属性a,值为37

    // 在对象中添加一个属性与存取描述符的示例
    var bValue;
    Object.defineProperty(o, "b", {
      get : function(){
        return bValue;
      },
      set : function(newValue){
          console.log(newValue)
        bValue = newValue;
      },
      enumerable : true,
      configurable : true
    });

    o.b = 38;
    console.log(bValue)
    // 对象o拥有了属性b,值为38

    // o.b的值现在总是与bValue相同,除非重新定义o.b

    // 数据描述符和存取描述符不能混合使用
    // Object.defineProperty(o, "conflict", {
    //   value: 0x9f91102, 
    //   get: function() { 
    //     return 0xdeadbeef; 
    //   } 
    // });
    // throws a TypeError: value appears only in data descriptors, get appears only in accessor descriptors
    </script>
    </html>
  • 相关阅读:
    activemq学习
    shell变量
    ext3文件系统目录限制问题
    linux性能优化cpu 磁盘IO MEM
    vs2010下编译osip2和eXosip2的4.0.0版的静态库及搭建开发环境
    samba的rpm包,只有tar.gz文件安装
    随记
    mount/umount系统调用
    不定参数的传递VA_LIST的用法
    samba服务器源码安装(非rpm)
  • 原文地址:https://www.cnblogs.com/x-yy/p/13099795.html
Copyright © 2011-2022 走看看