好的設計即是感受不到設計的存在
開發小程序,可是:沒有後端!沒有運維!沒有 DBA!沒有域名!沒有證書!沒有錢!沒有精力!javascript
不要緊,會 javascript 就能夠,Westore Cloud 帶你起飛~~html
https://github.com/dntzhang/westore前端
開發者可使用雲開發開發微信小程序、小遊戲,無需搭建服務器,便可使用雲端能力。java
雲開發爲開發者提供完整的雲端支持,弱化後端和運維概念,無需搭建服務器,使用平臺提供的 API 進行核心業務開發,便可實現快速上線和迭代,同時這一能力,同開發者已經使用的雲服務相互兼容,並不互斥。git
目前提供三大基礎能力支持:github
關於小程序雲更多信息的官方文檔能夠點擊這裏mongodb
Westore Cloud 在基於小程序雲的數據庫能力,讓開發者感知不到數據庫的存在(隱形雲),只須要專一於本地數據、本地數據邏輯和本地數據的流動,經過簡單的 pull、push、add 和 remove 同步本地數據和雲數據庫。數據庫相關的官方文檔能夠點這裏。架構圖以下所示:數據庫
典型的 Data First 架構設計,中小型項目能夠去掉 Models 和 Adapter 兩大模塊。能夠與 Model first 的架構對比:編程
Model first 的架構裏,若是不須要持久化存儲,能夠去掉 Database,只剩下 Models。Models 與渲染無關,專一於模型的抽象與模型之間的邏輯,具體是渲染到 Web、安卓、IOS 仍是 Flash 或者 WPF 通通不屬於 Models 須要操心的問提。小程序
安裝上面創建的集合名稱一一對應創建好 store 的 data:
export default { data: { //user 對應 db 的 collectionName 'user': [], //其餘 collection 能夠繼續添加 'product': [] }, env:'test-06eb2e' }
上面的 env 對應雲控制檯的環境 ID:
經過 add 方法往集合 user 添加數據:
this.store.add('user', { name: 'dntzhang', city: '深圳', age: 22, gender: 1 }).then((res) => { })
經過 add 方法往集合 product 添加數據:
this.store.add('product', { address: { province:'廣東省', city:'深圳市', }, agent: [ '微信支付', '微信搜一搜', '微信讀書'] })
export default { data: { 'user':[], 'product': [] }, methods:{ //這裏能夠擴展 collection 每一項的方法 'product':{ 'agentString':function(){ //this.agent 對應 product 集合的 agent字段 return this.agent.join('-') } } }, env:'test-06eb2e' }
經過上面的擴展方法,在遍歷 product 表的每一項時,能夠直接使用 agentString 屬性綁定到視圖,好比展現本地第一條數據的 agentString:
<view>{{product[0].agentString}}</view>
this.store.pull('user').then(res => { this.store.data.user = res.data this.update() })
<view class="container"> <view class="title" >用戶信息</view> <view>姓名:{{user[0].name}}</view> <view>年齡:{{user[0].age}}</view> <view>城市:{{user[0].city}}</view> <view>性別:{{user[0].gender===1?'男':'女'}}</view> <view class="title" >產品(測試深層屬性綁定和更新)</view> <view>省:{{product[0].address.province}}</view> <view>市:{{product[0].address.city}}</view> <view>代理商:{{product[0].agentString}}</view> <view class='split'></view> <user-list></user-list> <view> <button ontap="addUser">新增 User</button> </view> </view>
this.store.data.user[0].name = 'dntzhang' + Math.floor(Math.random() * 100) this.store.push().then((res) => { console.log('成功更新雲數據庫') })
push
方法等於 update local + update cloud。因此不只本地視圖會刷新,雲數據庫也會同步更新,更新回調在 then 裏執行。
支持精準更新深層的嵌套屬性,如:
this.store.data.product[0].address.city = '廣州市' this.store.data.product[0].agent[0] = '微信' this.store.data.product[0].agent[1] = 'QQ' this.store.data.product[0].agent[2] = '騰訊雲' this.store.push()
更新後:
const item = this.store.data.user.splice(index, 1)[0] this.update() //更新本地數據和視圖 this.store.remove('user', item._id) //同步到雲數據庫
const user = { name: 'new user' + this.store.data.user.length, age: 1, city: '江西', gender: 2 } this.store.data.user.push(user) //優先更新本地視圖 this.update() //增長到雲數據庫 this.store.add('user', user)
若是新增的條數據後續須要修改且同步到雲數據庫須要設置 _id,即最後一行代碼改爲:
this.store.add('user', user).then((res) => { //設置_id,方便後續修改進行 push user._id = res._id this.update() })
增長改查完整的 DEMO 能夠點擊這裏。
拉取雲數據庫集合的 JSON 數據
名稱 | 是否可選 | 類型 | 描述 |
---|---|---|---|
collectionName | 必須 | 字符串 | 集合名稱 |
where | 沒必要須 | JSON Object | 查詢條件,如查詢18歲 {age : 18} |
更多 where 的構建查詢條件的 API 能夠點擊這裏。
返回 Promise 對象的實例。
查詢 18 歲的用戶:
this.store.pull('user', {age: 18}).then(res => { this.store.data.user = res.data this.update() })
同步本地 JSON 到雲數據庫
返回 Promise 對象的實例。
this.store.data.user[0].name = 'dntzhang' this.store.data.product[0].address.city = '廣州市' this.store.data.product[0].agent[1] = 'QQ' this.store.data.product[0].agent[2] = '騰訊雲' this.store.push().then((res) => { console.log('同步數據完成!') })
添加 JSON 數據到數據庫
名稱 | 是否可選 | 類型 | 描述 |
---|---|---|---|
collectionName | 必須 | 字符串 | 集合名稱 |
data | 必須 | JSON Object | 添加到數據庫的數據項 |
返回 Promise 對象的實例。
const user = { name: 'new user' + this.store.data.user.length, age: 1, city: '江西', gender: 2 } this.store.data.user.push(user) this.update() this.store.add('user', user).then((res) => { //設置_id user._id = res._id this.update() })
根據 id 刪除數據庫中的數據
名稱 | 是否可選 | 類型 | 描述 |
---|---|---|---|
collectionName | 必須 | 字符串 | 集合名稱 |
id | 必須 | 字符串 | 對應數據庫中自動生成的 _id 字段 |
返回 Promise 對象的實例。
const item = this.store.data.user.splice(index, 1)[0] this.update() this.store.remove('user', item._id)
diffToPushObj({ 'user[2].name': { cc: 1 }, 'user[2].age': 13, 'user[1].a.b': { xxx: 1 } })
返回:
{ 'user-2': { 'name': { 'cc': 1 }, 'age': 13 }, 'user-1': { 'a': { 'b': { 'xxx': 1 } } } }
其中,'user-2'.split('-') 以後能夠獲得DB的集合名user,數字 2 表明本地數據第三條。
https://github.com/dntzhang/westore
MIT @dntzhang