ES6 - 对象扩展(增强字面量)

Posted tangge

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 - 对象扩展(增强字面量)相关的知识,希望对你有一定的参考价值。

/**
 * 对象的扩展
 * 
 * 增强对象字面量
 * 
 * 解决问题:缩减代码
 */

{
  /**
   * 1.属性简表示法
   * 变量foo直接写在大括号里面。这时,属性名就是变量名, 属性值就是变量值
   */
  const foo = 'bar';
  const baz = { foo };
  // baz // {foo: "bar"}

  // 等同于
  // const baz = { foo: foo };


  /**
   * 方法简写
   */
  const o1 = {
    method() {
      return "Hello!";
    }
  };

  // 等同于

  const o2 = {
    method: function () {
      return "Hello!";
    }
  };
}

{
  // 例子1
  let birth = '2000/01/01';

  const Person = {

    name: '张三',

    //等同于birth: birth
    birth,

    // 等同于hello: function ()...
    hello() { console.log('我的名字是', this.name); }
  };



  // 例子2
  function createBookShop(inventory) {
    return {
      inventory,    //属性简写  inventory:inventory,
      // inventoryValue: function () {
      inventoryValue() {
        return this.inventory.reduce((total, book) => total +
          book.price, 0);
      },
      //priceForTitle: function (title) {
      priceForTitle(title) {
        return this.inventory.find(book => book.title === title)
          .price;
      }
    }
  }

  const inventory = [
    { title: "Vue", price: 10 },
    { title: "Angular", price: 15 }
  ];

  const bookShop = createBookShop(inventory);
  console.log(bookShop.inventoryValue());         //25
  console.log(bookShop.priceForTitle("Angular")); //15

}

以上是关于ES6 - 对象扩展(增强字面量)的主要内容,如果未能解决你的问题,请参考以下文章

ES6——字面量的增强解构let/const块级作用域暂时性死区

ES6新语法之---对象字面量扩展模板字符串

ES6深入浅出-2 新版函数:4 迭代器与生成器-1.字面量增强

ES6对象的新功能与解构赋值

ES6总结上

ES6模板字面量