Skip to content

Latest commit

 

History

History
132 lines (104 loc) · 3.1 KB

packageUpgrade.md

File metadata and controls

132 lines (104 loc) · 3.1 KB

包升级

node-sdk 与 tcb-admin-node 目前在 云函数,文件存储,数据库功能上保持了一致,但是 node-sdk 为用户提供了更友好的开发体验,未来 node-sdk 将继续迭代支持新特性,而 tcb-admin-node 会处于维护阶段,不会新增特性。

如何从 tcb-admin-node 迁移至 @cloudbase/node-sdk ?

sdk 初始化方式变动

示例如下:

  • 使用 tcb-admin-node 支持两种初始化方式
// 方式一 使用tcb对象调用api
const tcb = require('tcb-admin-node')
tcb.init({ env: 'xxx' })
const db = tcb.database()
const result = await db
    .collection('coll')
    .where({})
    .get()

// 方式二 使用tcb.init() 得到的对象调用api
const tcb = require('tcb-admin-node')
const app = tcb.init({ env: 'xxx' })
const db = app.database()
const result = await db
    .collection('coll')
    .where({})
    .get()
  • 使用 node-sdk 只支持 init 初始化实例
// 只支持 使用tcb.init() 得到的对象调用api,方式一(使用require的对象直接调用api)被废弃

// database
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({ env: 'xxx' })
const db = app.database()

const result = await db
    .collection('coll')
    .where({})
    .get()

// function
const result = await app.callFunction({
    name: 'test',
    data: { a: 1 }
})

// storage
const result = await app.uploadFile({
    cloudPath: 'a|b测试.jpeg',
    fileContent
})

实例必须由 init 方法生成,然后由实例调用 api 方法,多次 init 将会得到多个不同实例

⚠️ 使用 node-sdk 库时,请务必使用 init 方法初始化的实例 来调用 api,否则会导致报错

自定义超时时间

数据库相关

示例如下:

// database
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({ env: 'xxx' })
const db = app.database()

const queryDocumentOpts = {
    timeout: 5000
}
// 举例:查询文档
const result = await db
    .collection('coll')
    .where({})
    .options({ timeout: 10000 })
    .get()

函数相关

// function
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({ env: 'xxx' })

const functionOpts = {
    timeout: 5000
}
const result = await app.callFunction(
    {
        name: 'test',
        data: { a: 1 }
    },
    functionOpts
)

存储相关

// storage  上传文件
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({ env: 'xxx' })

const uploadFileOpts = {
    timeout: 5000
}
const result = await app.uploadFile(
    {
        cloudPath: 'a|b测试.jpeg',
        fileContent
    },
    uploadFileOpts
)

其他文件存储接口的自定义超时设置请参考文件存储接口详细文档