![[流泪]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_6.dde0d83.png)
umi:解决 umi 无法在非函数组件中使用 useIntl 来进行国际化
```js
import { getIntl, getLocale } from 'umi'
export const _t(id, params) {
const intl = getIntl(getLocale())
if(!id) return ''
return intl.formatMessage({id, defaultMessage: id}, params)
}
使用:
_t('你好')
```
```js
import { getIntl, getLocale } from 'umi'
export const _t(id, params) {
const intl = getIntl(getLocale())
if(!id) return ''
return intl.formatMessage({id, defaultMessage: id}, params)
}
使用:
_t('你好')
```
展开
评论
4
![[微笑]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_1.7d9f699.png)