FCC高级编程篇之Record Collection

Record Collection

You are given a JSON object representing a part of your musical album collection. Each album has several properties and a unique id number as its key. Not all albums have complete information.
Write a function which takes an album's id (like 2548), a property prop (like "artist" or "tracks"), and a value (like "Addicted to Love") to modify the data in this collection.
If prop isn't "tracks" and value isn't empty (""), update or set the value for that record album's property.
Your function must always return the entire collection object.
There are several rules for handling incomplete data:
If prop is "tracks" but the album doesn't have a "tracks" property, create an empty array before adding the new value to the album's corresponding property.
If prop is "tracks" and value isn't empty (""), push the value onto the end of the album's existing tracks array.
If value is empty (""), delete the given prop property from the album.

对JS对象的增删改查

题目给的原始数据为

var collection = {
    "2548": {
      "album": "Slippery When Wet",
      "artist": "Bon Jovi",
      "tracks": [
        "Let It Rock",
        "You Give Love a Bad Name"
      ]
    },
    "2468": {
      "album": "1999",
      "artist": "Prince",
      "tracks": [
        "1999",
        "Little Red Corvette"
      ]
    },
    "1245": {
      "artist": "Robert Palmer",
      "tracks": [ ]
    },
    "5439": {
      "album": "ABBA Gold"
    }
};

规则有四:

  1. 如果输入属性不是tracks并且值不为空,则添加或更新专辑的属性;

  2. 当专辑没有tracks属性时,添加该属性,设置其值为空数组;

  3. 如果有tracks属性并且值不为空,则在末尾追加新值;

  4. 如果值为空,则删除该属性;

一步一步来,先处理没有值的情况:

function updateRecords(id, prop, value) {
  if (!value) {
    delete collection[id][prop];
  }

  return collection;
}

当值为空时,删除对应的属性。

然后处理属性不是tracks时的情况:

function updateRecords(id, prop, value) {
  if (!value) {
    delete collection[id][prop];
  } else if (prop !== 'tracks') {
    collection[id][prop] = value;
  }

  return collection;
}

接着处理proptracks时的情况:

  1. 当没有tracks属性时,按照题目要求,先添加其值为空数组;

  2. 添加新值;

function updateRecords(id, prop, value) {
  if (!value) {
    delete collection[id][prop];
  } else if (prop !== 'tracks') {
    collection[id][prop] = value;
  } else {
    if (!collection[id].hasOwnProperty('tracks')) {
      collection[id][prop] = [];
    }
    collection[id][prop].push(value);
  }

  return collection;
}

现在对所写代码进行测试,结果如下图所示。

Record-collection测试结果图

转载于:https://www.cnblogs.com/laoho/p/7785126.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值