uni-app系列----專案國際化
阿新 • • 發佈:2020-09-01
實現uni-app商城的國際化翻譯
一個官網社群的教程(很清晰):https://ask.dcloud.net.cn/article/35102
適用於小專案的安裝部署;
大專案的引入要把適配檔案分離開來:
下面是引入的git更改情況:
main.js @@ -1,9 +1,10 @@ import Vue from 'vue'; import App from './App'; import wechat from './utils/wechat.js'; - -// import {RouterMount} from './js_sdk/hhyang-uni-simple-router/index.js'; import RouterMount from './router/index.js' +// 國際化模組 +import VueI18n from 'vue-i18n' +Vue.use(VueI18n) // #ifdef H5 if(wechat.isWechat()){ @@ -38,9 +39,33 @@ Vue.mixin({ } }); +// 獲取預設語言 +var lang = '' +uni.getSystemInfo({ + success: (res) => { + lang = res.language + console.log('當前語言: ',lang) + } +}) + +const i18n = new VueI18n({ + locale : lang == 'zh-CN' ? 'zh-CN' : 'en-US' , // 語言識別 + messages: { + 'en-US' : require('utils/lang/en.js'), // 英文語言包 + 'zh-CN' : require('utils/lang/zh.js') // 中文簡體語言包 + } +}) + +Vue.prototype._i18n = i18n + +Vue.prototype.$i18nMsg = function(){ + return i18n.messages[i18n.locale] +} + App.mpType = 'app'; const app = new Vue({ + i18n, // 國際化 ...App });
package.json @@ -18,5 +18,8 @@ "uni-read-pages": "^1.0.5", "jsqr": "^1.3.1", "quagga": "^0.12.1" + }, + "dependencies": { + "vue-i18n": "^8.21.0" } }
pages/index/index.vue @@ -6,7 +6,7 @@ <view class="scrolltop"> <view class="section" @tap="toSearchPage"> <image src="/static/images/icon/search.png" class="search-img"></image> - <text class="placeholder">搜尋</text> + <text class="placeholder">{{i18n.search}}</text> </view> </view> </view> @@ -212,6 +212,11 @@ export default { onLoad: function () { this.getAllData(); },+ //每個需翻譯的檔案都要引入 + computed:{ + i18n() { + return this.$t('index') + } + },
utils/lang/en.js @@ -0,0 +1,5 @@ +// 英文語言包 +export const index = { + "testTitle": 'testTitle', + "search": 'Search' +}
utils/lang/zh.js @@ -0,0 +1,5 @@ +// 簡體中文語言包 +export const index = { + "exampleTitle": '測試標題', + "search": '搜尋' +}