Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
90 views
in Technique[技术] by (71.8m points)

javascript - Get index of Object inside Array and use it in a function

In Javascript, is it possible to get the Index of the object (in an array of objects) and use it inside of the same object in a function?

For example:

const foo = [
  {
    id: 1,
    comments: getComments(this.index) // index of the object goes here
  },
  {
    id: 34,
    comments: getComments(this.index) // index of the object goes here
  },
  {
    id: 21,
    comments: getComments(this.index) // index of the object goes here
  }
]

const getComments = function(index) {
  return foo[index].id // return the ID of the actual object
}

Or is there a workaround for what I'm trying to achieve here?

question from:https://stackoverflow.com/questions/65944212/get-index-of-object-inside-array-and-use-it-in-a-function

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Do it in two steps. First create the array of objects, then fill in the comments property by calling the function on each element.

const foo = [
  {
    id: 1,
  },
  {
    id: 34,
  },
  {
    id: 21,
  }
]

foo.forEach(el => el.comments = getComments(el));

function getComments(obj) {
  return obj.id;
}

console.log(foo);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...