React-intl define messages outside of react

前端 未结 3 672
醉梦人生
醉梦人生 2021-01-17 15:53

I have utils.js file.

export function categoryIdToCategoryName(categoryId) {
let name;
switch (categoryId) {
    case constants.RISK_CATEGORY_LOW:
        na         


        
3条回答
  •  醉酒成梦
    2021-01-17 16:56

    You can directly use the yahoo intl library for this task: https://github.com/yahoo/intl-messageformat

    Otherwise you can pass the formatMessage function from your react component to the functions it calls.

提交回复
热议问题