美文网首页
day10 以文章的为例的接口文档

day10 以文章的为例的接口文档

作者: LittleBear_6c91 | 来源:发表于2019-04-01 21:35 被阅读0次

文章查询接口api

请求URL:

/api/article/article/

请求方式:

GET

请求参数:

title 文章标题 string   非必填值
desc 文章详情 string    非必填值
id_max  查询id不大于的值 int   非必填值
id_min  查询id大于的值 int    非必填值

响应:

正常响应:
{
    'code':200,
    'msg':'请求成功',
    'data':{
        'id':1,
        'title': '学习vue',
        'desc': '学习vue2'
    }
}

失败响应:
{
    'code': 1001,
    'msg':'标题不能为空',
    'data':{
    
    }    
}

响应参数:

code 响应状态码 int
msg 响应提示    string
id 文章id值    int
title 文章标题  string
desc 文章描述   string

相关文章

网友评论

      本文标题:day10 以文章的为例的接口文档

      本文链接:https://www.haomeiwen.com/subject/yaobbqtx.html