Blame view

lvdao-miniapp/uniCloud-tcb/cloudfunctions/usp-test/index.js 172 Bytes
e5b57447   杨鑫   '分包问卷'
1
2
3
4
5
6
7
8
  'use strict';
  exports.main = async (event, context) => {
  	//event为客户端上传的参数
  	console.log('event : ', event)
  	
  	//返回数据给客户端
  	return event
  };