我目前在Javascript代码中有以下内容,其中Id是对象的字段:
this.recId = event.detail.row.Id;
我想让Id部分像一样通用
String a = 'Id';
this.recId = event.detail.row.a;
我如何在Javascipt 中实现这一点
请改用[ ]
。
const obj = {
id: "myObject"
}
const a = "id"
console.log(obj[a]);
在你的例子中,它将是
this.recId = event.detail.row[a];
您可以使用this.recId = event.detail.row[a]
以获得所需结果