#鸿蒙通关秘籍#如何在鸿蒙应用中引用多语言资源文件?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
IDE红尘旧梦

通过使用t方法可以引用资源,这个方法既可在hml中也可在js中使用。其根据当前语言环境和指定的资源路径来显示内容。t方法接受的参数来自资源路径和可选的一些占位符参数。

bash // hml代码 <text>{{ $t('strings.hello') }}</text> <text>{{ $t('strings.object', { name: 'Hello world' }) }}</text> <text>{{ $t('strings.array', ['Hello world']) }}</text>

// js代码 export default { data: { hello: '', replaceObject: '', replaceArray: '', replaceSrc: '', }, onInit() { this.hello = this.$t('strings.hello'); this.replaceObject = this.$t('strings.object', { name: 'Hello world' }); this.replaceArray = this.$t('strings.array', ['Hello world']); this.replaceSrc = this.$t('files.image'); }, }

分享
微博
QQ
微信
回复
1天前
相关问题
求助ETS如何多语言切换?
3333浏览 • 1回复 待解决
鸿蒙如何获取资源文件种的路径
16430浏览 • 3回复 待解决
鸿蒙资源文件都又什么作用?
3667浏览 • 1回复 待解决
如何获取HSP的资源文件
2283浏览 • 1回复 待解决