add_view_count.js 370 字节
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3 4 5 6 7 8
// 开发文档:https://uniapp.dcloud.io/uniCloud/clientdb?id=action
const db = uniCloud.database()
const $cmd = db.command
module.exports = {
	before: async (state, event) => {
		
	},
	after: async (state, event, error, result) => {
DCloud_JSON's avatar
DCloud_JSON 已提交
9
		await db.collection('opendb-notice').update({
study夏羽's avatar
study夏羽 已提交
10 11 12 13 14 15 16 17
			view_count:$cmd.inc(1)
		})
		if (error) {
			throw error
		}
		return result
	}
}