# 引入
import { getI18nToken } from 't-comm';
// or
import { getI18nToken} from 't-comm/lib/i18n/index';
# getI18nToken(appId, appKey)
描述:
获取 i18n token
参数:
参数名 | 类型 | 描述 |
---|---|---|
appId | string | appId |
appKey | string | appKey |
返回: Promise.<string>
token
示例
getI18nToken('appId', 'appKey').then(token => {
console.log('token', token)
})