云开发后台服务器开发

首先初始化:
const app = CloudBase.init({
secretId: tcbsecretid,
secretKey: tcbsecretkey,
token: tcbtoken,
envId:id //可以不写 通过后面接口添加
})

初始化之后,通过app.getEnvironmentManager().获取环境管理实例
环境管理中,有add(envId) remove(envId) get(envId) switchEnv(envId) 以及getCurrentEnv() 。
getCurrentEnv又有如下接口:
getStorageService getDatabaseService getFunctionService getEnvService

我们可以通过getCurrentEnv来获取环境的名称,这样可以避免在初始化的时候输入环境名。然后通过add(envId)添加进入app
环境名获取方法是:app.getEnvironmentManager().getCurrentEnv().getEnvService().getEnvInfo()

或者直接进行环境初始化:
app.getEnvironmentManager().getCurrentEnv().lazyInit()
初始化之后,即可进行正常操作。

你可能感兴趣的:(wde)