小程序SDK
安装
NPM
在项目支持 NPM 时推荐使用 NPM 安装 SDK。
$ npm install --save @tencent/bugly-mp-sdk
使用
初始化
使用非常简单,只需要新建一个实例,传入相应的配置即可:
import Aegis from '@tencent/bugly-mp-sdk';
const aegis = new Aegis({
id: 'xxxxxxxxxx', // 在bugly注册的产品ID
uid: 'xxx', // 用户唯一标识(可选)
plugin: {
aid: true,
apiSpeed: true, // 接口测速
assetSpeed: true, // 静态资源测速
pagePerformance: true, // 页面性能
loadPackageSpeed: true, // 包下载耗时
api: {
// api相关配置
apiDetail: true,
retCodeHandler: () => {}
// ...
}
},
});