小程式入門學習12 雲函式與資料庫01

2021-10-02 20:48:00 字數 1245 閱讀 9951

index.wxml

雲函式--檢視

雲函式--新增

雲函式--刪除

雲函式--更新

index.js

page().then(console.log)

},//新增資料

addfunction:function()).then(console.log)

},//刪除資料

delfunction: function() ).then(console.log)

},//更新資料

updatefunction: function () ).then(console.log)

}})

對應四個雲函式

querrydata

// 雲函式入口檔案 初始化

const cloud = require('wx-server-sdk')

cloud.init()

let db = cloud.database();

// 雲函式入口函式

exports.main = async (event, context) =>

adddata

// 雲函式入口檔案

const cloud = require('wx-server-sdk')

cloud.init()

//引用database

let db = cloud.database()

// 新增資料

exports.main = async (event, context) =>

})}

deldata

const cloud = require('wx-server-sdk')

cloud.init()

let db = cloud.database();

exports.main = async (event, context) =>

updatedata

const cloud = require('wx-server-sdk')

cloud.init()

let db = cloud.database()

//更新資料

exports.main = async (event, context) =>

})}

小程式入門學習12 雲函式與資料庫01

index.wxml 雲函式 檢視 雲函式 新增 雲函式 刪除 雲函式 更新index.js page then console.log 新增資料 addfunction function then console.log 刪除資料 delfunction function then console...

小程式入門學習10 雲開發03

新增編譯模式 在這裡插入描述 1 新增資料 addtodo.wxml addtodo.js 初始化資料庫 const db wx.cloud.database 建立例項 const todos db.collection todos page then res 2 檢視所有資料index.wxml ...

學習微信小程式 雲函式 雲資料庫使用

一 雲函式 在使用雲函式的時候,wx server sdk 一直報錯,解決辦法是,把login刪除,在寫一遍,然後上傳部署,雲端安裝依賴就可以了 雲函式入口檔案 const cloud require wx server sdk cloud.init const db cloud.database ...