Answer:addVote

注意:该接口需要登陆后才能调用。

为回答投票。

HTTP 请求

POST /api/answers/{answer_id}/voters

参数

参数名参数位置类型默认值说明
answer_idpathinteger

回答ID

请求体

请求体类型:application/json

示例

{
  "type": "up"
}

参数说明

参数名必选类型说明
typestring

投票类型

取值范围包括:up, down

响应

投票数量

示例

{
  "code": 0,
  "data": {
    "vote_count": 44,
    "vote_up_count": 96,
    "vote_down_count": 52
  }
}

参数说明

参数名 类型 说明
code integer

无任何错误时,状态码为 0

data.vote_count integer

投票目标获得的总投票量(赞成票 - 反对票),结果可以为负数

data.vote_up_count integer

赞成票总数

data.vote_down_count integer

反对票总数