# 接口

使用评论小程序插件提供的接口,需要在页面 js 中通过 requirePlugin 引入:

const slugComment = requirePlugin('slug-comment')
1

# batchQueryNumber(gameid, comments)

参数名称 描述 类型 默认值 可选值
gameid 业务 ID 标识 String
comments 评论参数信息对象数组 Array
comments[].module 业务模块标识 String
comments[].objid 评论所在页面内容唯一标识 Number
comments[].stime 评论所在页面内容时间 Number Number

描述: 批量查询评论数,返回 Promise 实例对象,查询成功则在 resolve 中返回评论总数相关信息数组。

用法:

// js
let comments = [
  {
    module: 'dev',
    objid: '15307037',
    stime: 201807,
  },
  {
    module: 'dev',
    objid: '15314693',
    stime: 201808,
  },
]
slugComment.batchQueryNumber('slugcomment', comments).then((result) => {
  result.forEach((item) => {
    console.log(item.busikey) // 'all_mobile'
    console.log(item.num) // 评论总数
    console.log(item.objid) // 评论所在页面内容唯一标识
    console.log(item.stime) // 评论所在页面内容时间
  })
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21