jacklee221
jacklee221
  • 发布:2023-03-19 22:52
  • 更新:2023-03-20 09:12
  • 阅读:182

这种变量 对象 怎么写呢?

分类:uni-app

allusers:{"P01":"张三","P02":"李四","P03":"王五"}

getusername(xxx){
console.log(this.allusers.xxx) //结果是undefined
}

如何根据变量xxx获得对应的属性值呢?
getusername("P03") 就打印王五?

2023-03-19 22:52 负责人:无 分享
已邀请:
陌上华年

陌上华年

getusername(key){  
    return this.allusers[key]  
}
晓寒1987

晓寒1987 - 相濡以沫不如相忘于江湖

前边不要引号的

要回复问题请先登录注册