如题?
【求助】ray里如何使用I18n?
Re: 【求助】ray里如何使用I18n?
- 你是要用ray开发面板小程序还是非面板小程序呢?
- 如果是面板小程序的话,参考:https://developer.tuya.com/cn/miniapp/p ... D%E8%A8%80 他需要在涂鸦 IoT 平台 的 产品多语言 页面设定 设备面板 的多语言配置。
- 如果是非面板小程序的话,在ray中使用的话同上面板小程序的使用方法,但是配置,是在开发者平台中进行多语言配置,参考
https://developer.tuya.com/cn/miniapp/e ... 9%E5%BC%8F 这个多语言配置方式。
导出多语言
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?
请注意使用最新的ray版本哦~