Javascript Enum To Corresponding String Value

前端 未结 8 1989
攒了一身酷
攒了一身酷 2021-01-07 17:06

So I have this in the javascript for my page:

var TEST_ERROR  = {
        \'SUCCESS\'   :   0,
        \'FAIL\'      :   -1,
        \'ID_ERROR\'  :   -2
            


        
8条回答
  •  迷失自我
    2021-01-07 17:44

    The best way to do it is:

    export const UserLevel = Object.freeze({
       BABY: 1,
       CHILED: 2
    });
    

    Why we need to add freeze UserLevel is const but we can change the values inside, so freeze will make it safe for changes.

提交回复
热议问题