微信小程序转 nui-app 格式 使用微信云服务器的设置

  1. 设置云环境

微信小程序转 nui-app 格式 使用微信云服务器的设置_第1张图片

<script>
	export default {
		//小程序初始化的钩子
		onLaunch: async function() {
			if (!wx.cloud) {  
			  console.error('请使用 2.2.3 或以上的基础库以使用云能力')
			} else {
			  wx.cloud.init({
			    env: 'text-modle-t3tox',
			    traceUser: true,
			  })
			}
		}
	}
</script>
  1. 使用 云服务数据库

微信小程序转 nui-app 格式 使用微信云服务器的设置_第2张图片

<script>
	const db = wx.cloud.database()
	export default {
		onLoad: async function(options) {
			//从in_theaters云数据库里面获取三条数据
			let res = await db.collection("in_theaters").where({}).limit(3).get()
			let result = []
			this.movies = result
		}
	}
</script>

//仅供参考

你可能感兴趣的:(uni-app)