如何将switch语句遍历对象优化?

如何将switch语句遍历对象优化的更精简

switch (this.active) {
    case 0:
      this.OrderState = 'Wait';
      break;
    case 1:
      this.OrderState = 'Sent';
      break;
    case 2:
      this.OrderState = 'Fail';
      break;
    default:
      break;
}
阅读 3.7k
2 个回答
const temp = ['wait', 'Sent', 'Fail'];
this.OrderState = temp[this.active]

2019年了,肯定玩点骚操作啊,用Map来表示映射关系。

let stateMap = new Map

stateMap
    .set(0, 'Wait')
    .set(1, 'Sent')
    .set(2, 'Fail')
    
this.OrderState = stateMap.get(this.active)
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题