vue3 0中使用web雲開發(2)

2022-08-25 23:45:15 字數 897 閱讀 1601

這一篇說一下雲資料庫的使用

資料庫的基本操作

資料的新增

db.collection('test')

.add()

.then(res => )

讀取資料庫中資料

db.collection('test')

.doc('該條資料的id')

.get()

.then(res => )

根據條件查詢

更新資料

db.collection('test')

.doc('該條資料id')

.update()

.then(res => )

刪除資料

db.collection('test')

.doc('doc-id')

.remove()

.then(res => )

vue 3 0中使用本地的json檔案

1.main.js檔案中 import axios from axios axios.get api city then data console.log data api city是根據自己的檔案設定的。2.vue.config.js const express require express v...

vue3 0中i18n國際化外掛程式的使用

記錄在學習vue3.0是新增i18n國際化翻譯功能以及遇到的問題。在vue3.0 中使引用 i18n 時一直報錯原因 請檢查版本問題!請檢查版本問題!請檢查版本問題!目前我使用的 vue i18n 9.0.0 beta.17 版本開始相容vue3.0。安裝最新的版本 next 步驟1 安裝vue i...

vue3 0中i18n國際化外掛程式的使用

自 後續為自行補充 記錄在學習vue3.0是新增i18n國際化翻譯功能以及遇到的問題。步驟1 安裝vue i18n npm install vue i18n next 步驟2 建立language資料夾存放各版本語言變數 language 中 index.js 語言 import from vue ...