获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 小程序云开发使用云数据库的条件查询,为什么查询不到值?
[图片][图片] 表是正确的,云开发也初始化了
2022-06-08 - 如何解决client.GetActionSequence(params)返回值为null的问题?
const tencentcloud = require("tencentcloud-sdk-nodejs"); const FaceidClient = tencentcloud.faceid.v20180301.Client; const clientConfig = { credential: { secretId: "secretId", secretKey: "secretKey", }, region: "", profile: { httpProfile: { endpoint: "faceid.tencentcloudapi.com", }, }, }; const client = new FaceidClient(clientConfig); const params = {}; client.GetActionSequence(params).then( (data) => { console.log(data); }, (err) => { console.error("error", err); } );
2022-05-16