On this page
获取指定商品评论列表
接口功能
获取首页指定分类下的分页数据
URL
http://ceshi3.dishait.cn/api/goods/:id/comments/[:comment_type]?page=[:page]
支持格式
JSON
HTTP请求方式
GET
请求参数
参数 | 必选 | 类型 | 说明 |
---|---|---|---|
id | true | int | 商品id |
page | false | int | 分页 |
comment_type | false | String | 默认不填,表示获取所有评论;可选值:good,middle,bad |
接口示例
地址:http://ceshi3.dishait.cn/api/goods/25/comments/good?page=1
json5
{
"msg":"ok",
"data":{
"list":[
{
"id":5,
"rating":1,
"review":{
"data":"商品不错哦",
"image":[
"http://...png",
// ...
]
},
"review_time":1567341267,
"goods_num":0,
"user_id":3,
"user":{
"id":3,
"nickname":"...",
"avatar":"http://...png"
}
},
// ...
],
"total":4,
"good_rate":0.5
}
}