Skip to content
本页导读

云函数

一些常用云函数集合

安装

从插件市场导入UxCloud到项目即可

API

检测版本更新

ts
const app = uniCloud.importObject('app')
app.checkVersion<UxUpgradeInfo>({
	version: uni.getSystemInfoSync().appVersion,
	platform: uni.getSystemInfoSync().platform,
	uniPlatform: uni.getSystemInfoSync().uniPlatform
}).then((res: UxUpgradeInfo) => {
	console.log(res)
}).catch((err: any | null) => {
	console.log(err);
})
const app = uniCloud.importObject('app')
app.checkVersion<UxUpgradeInfo>({
	version: uni.getSystemInfoSync().appVersion,
	platform: uni.getSystemInfoSync().platform,
	uniPlatform: uni.getSystemInfoSync().uniPlatform
}).then((res: UxUpgradeInfo) => {
	console.log(res)
}).catch((err: any | null) => {
	console.log(err);
})

上次更新: