如何在 nodejs 中访问对象键,其中 'category.0' 格式的键

How can I access object keys, where keys in 'category.0' format, in nodejs

我有关于如何访问对象键和键存储在其中的值的查询:

var object1 = {
name: 'Developer',
'category.0': 'student',
'category.1': 'back-end'
}
//console.log(object1);

有什么方法可以获取类别数据作为 category: '['student','back-end']' OR category: [ 'student','back-end']

或者有什么方法可以访问密钥 'category.0', 'category.1', ... 'category.n'?

提前致谢!

您可以使用

访问您的对象
object1['category.0'];

// or

object1['category.' + n]

其中 n 是您的电话号码