Page 1 of 1

【求助】ray里如何使用I18n?

Posted: 2023年 Feb 1日 11:20
by Muzzzhi

如题? :?: :?: :?: :?:


Re: 【求助】ray里如何使用I18n?

Posted: 2023年 Feb 1日 14:01
by 智能小程序开发者

导出多语言

Code: Select all

import { kit } from '@ray-js/ray';
import Strings from './strings';

const { I18N } = kit;

export default new I18N(Strings);

使用多语言

Code: Select all

import Strings from '../i18n';

const localizedText = Strings.getLang('hello');

console.log(localizedText);

Re: 【求助】ray里如何使用I18n?

Posted: 2023年 Feb 1日 14:01
by 智能小程序开发者

请注意使用最新的ray版本哦~