作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下数组:
const x = [
{event: "oninput", action: ""},
{event: "onfocus", action: ""}
]
以下是所需的输出:
// event: action
{
oninput: "",
onfocus: ""
}
我尝试了以下并没有真正起作用:
const x = [
{event: "oninput", action: ""},
{event: "onfocus", action: ""}
]
console.log({...x.map(y => {return {[y.event]: y.action}})})
最佳答案
你可以使用 Object.assign
并映射对象。这会收集所有对象并将其分配给单个对象。
const x = [
{ event: "oninput", action: "" },
{ event: "onfocus", action: "" }
];
console.log(Object.assign(...x.map(({ event, action }) => ({ [event]: action }))));
关于javascript - 如何在 Javascript 中将数组转换为对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54142529/
我是一名优秀的程序员,十分优秀!