1 // 云对象教程: https://uniapp.dcloud.net.cn/uniCloud/cloud-obj 2 // jsdoc语法提示教程:https://ask.dcloud.net.cn/docs/#//ask.dcloud.net.cn/article/129 3 module.exports = { 4 _before: function() { // 通用预处理器 5 // 连接数据库代码 6 const db = uniCloud.databaseForJQL({ 7 clientInfo: this.getClientInfo() 8 }) 9 10 const methodName = this.getMethodName() //获取当前请求的函数名称 11 // 如果当前执行的是 method1函数,但是用户未登陆时,报错 12 if (methodName === 'method1' && !this.getUniIdToken()) { 13 throw new Error('token不存在') 14 } 15 }, 16 17 // error 是内置参数 18 // result 是函数返回结果 19 _after(error, result) { 20 if (error) { 21 throw error // 如果方法抛出错误,也直接抛出不处理 22 } 23 result.timeCost = Date.now() - this.startTime 24 return result 25 }, 26 27 // 定时执行时,会调用这里 28 _timing() { 29 30 }, 31 32 /** 33 * method1方法描述 34 * @param {string} param1 参数1描述 35 * @returns {object} 返回值描述 36 */ 37 method1(param1) { 38 // 参数校验,如无参数则不需要 39 if (!param1) { 40 return { 41 errCode: 'PARAM_IS_NULL', 42 errMsg: '参数不能为空' 43 } 44 } 45 // 业务逻辑 46 47 // 返回结果 48 return { 49 param1 //请根据实际需要返回值 50 } 51 } 52 }
标签:return,method1,对象,result,param1,error,net,模板 From: https://www.cnblogs.com/wm218/p/17105757.html