javascript - 如有必要,获取带有姓氏首字母的名字列表

标签 javascript arrays string formatting

所以在我的 JS 中我有一个这样的对象;

[
    {
        firstname: "John",
        lastname: "Smith"
    },
    {
        firstname: "Peter",
        lastname: "Gregory"
    },
    {
        firstname: "John",
        lastname: "Fisher"
    },
    {
        firstname: "Sam",
        lastname: "Fisher"
    }
]

我想以逗号分隔的字符串显示名字。现在这已经足够简单了,但我还想仅在必要时显示姓氏的第一个首字母,以区分两个名字相同的人。

所以,最后,我会有这个:

John S., Peter, John F., Sam

到目前为止,我已经能够做一个循环来记住过去的首字母,但对我来说问题变成了示例中的第四个条目;某人的姓氏必须与其他人区分开来,但不与任何人共享名字。

解决这个问题最明智的方法是什么?

最佳答案

Array.map + Array.join 就可以了。如果您需要,我在底部包含了一个用于 Array.map 的 polyfill。

var people = [
{
    firstname: "John",
    lastname: "Smith"
},
{
    firstname: "Peter",
    lastname: "Gregory"
},
{
    firstname: "John",
    lastname: "Fisher"
},
{
    firstname: "Sam",
    lastname: "Fisher"
}
]

/* Count number of firstNames */
var firstnames = {};
for (var i = 0; i < people.length; i++) {
   if (!firstnames[people[i].firstname]) {
       firstnames[people[i].firstname] = 0;
   }
   firstnames[people[i].firstname] ++;
}

/* Create the string of names */
var peopleString = people.map(function (a) {
   /* Check if we need a last name here */ 
   var lastname = firstnames[a.firstname] > 1 ? (a.lastname ? ' ' + a.lastname.substr(0, 1) + '.' : '') : '';
   
   return a.firstname + lastname; 
}).join(', ');

document.write(peopleString);


/*Polyfill for Array.map taken from MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map#Polyfill*/
// Production steps of ECMA-262, Edition 5, 15.4.4.19
// Reference: http://es5.github.io/#x15.4.4.19
if (!Array.prototype.map) {

  Array.prototype.map = function(callback, thisArg) {

    var T, A, k;

    if (this == null) {
      throw new TypeError(' this is null or not defined');
    }

    // 1. Let O be the result of calling ToObject passing the |this| 
    //    value as the argument.
    var O = Object(this);

    // 2. Let lenValue be the result of calling the Get internal 
    //    method of O with the argument "length".
    // 3. Let len be ToUint32(lenValue).
    var len = O.length >>> 0;

    // 4. If IsCallable(callback) is false, throw a TypeError exception.
    // See: http://es5.github.com/#x9.11
    if (typeof callback !== 'function') {
      throw new TypeError(callback + ' is not a function');
    }

    // 5. If thisArg was supplied, let T be thisArg; else let T be undefined.
    if (arguments.length > 1) {
      T = thisArg;
    }

    // 6. Let A be a new array created as if by the expression new Array(len) 
    //    where Array is the standard built-in constructor with that name and 
    //    len is the value of len.
    A = new Array(len);

    // 7. Let k be 0
    k = 0;

    // 8. Repeat, while k < len
    while (k < len) {

      var kValue, mappedValue;

      // a. Let Pk be ToString(k).
      //   This is implicit for LHS operands of the in operator
      // b. Let kPresent be the result of calling the HasProperty internal 
      //    method of O with argument Pk.
      //   This step can be combined with c
      // c. If kPresent is true, then
      if (k in O) {

        // i. Let kValue be the result of calling the Get internal 
        //    method of O with argument Pk.
        kValue = O[k];

        // ii. Let mappedValue be the result of calling the Call internal 
        //     method of callback with T as the this value and argument 
        //     list containing kValue, k, and O.
        mappedValue = callback.call(T, kValue, k, O);

        // iii. Call the DefineOwnProperty internal method of A with arguments
        // Pk, Property Descriptor
        // { Value: mappedValue,
        //   Writable: true,
        //   Enumerable: true,
        //   Configurable: true },
        // and false.

        // In browsers that support Object.defineProperty, use the following:
        // Object.defineProperty(A, k, {
        //   value: mappedValue,
        //   writable: true,
        //   enumerable: true,
        //   configurable: true
        // });

        // For best browser support, use the following:
        A[k] = mappedValue;
      }
      // d. Increase k by 1.
      k++;
    }

    // 9. return A
    return A;
  };
}

关于javascript - 如有必要,获取带有姓氏首字母的名字列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29652947/

相关文章:

javascript - SetInterval 和 SetTimeout 迭代数组

javascript - 如何获取密码输入Javascript的值

c++ - 将对象插入具有动态内存的数组中(不允许 vector )C++

php - 如何转置多维多文件上传提交并维护关联键?

javascript - 如何检查字符串是否包含子字符串?

c# - 使用 IsNullOrEmpty 扩展 String 类是否令人困惑?

javascript - 如何使用setInterval直到图像未加载?

javascript - 使用 jQuery 查找 IP 地址

c - 如何在给定指针数组的情况下创建字符串数组?

javascript - 将字符串拆分为数组