码迷,mamicode.com
首页 > 其他好文 > 详细

4.用户管理

时间:2018-06-15 12:49:20      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:_id   res   icon   password   其他属性   修改时间   word   返回   comment   

4.用户管理接口

3.1.添加老师

老师可以自己注册,也可以有后台管理添加。
注册时只需要提供姓名、手机号、密码即可。注册完成后可以在个人中心修改自己的详细信息。

  • 请求

    /users/addpubs

    参数
    name 【必选】姓名,2~64个字符
    phone 【必选】手机号
    password 【必选】 登录密码
    email 邮件
    sex 性别
    1: 男
    2: 女
    icon 头像
    address 地址 , 限512个字符。
    comment 备注,用于管理时书写备注,用户自己不能修改
    maintext 介绍,详细介绍,可以是html内容。

  • 响应

    {
        "code": 0,
        "err_desc": "6"
    }

3.2.添加学生

学生自己注册。
注册时只需要提供姓名、手机号、密码即可。注册完成后可以在个人中心修改自己的详细信息。

  • 请求

    /users/addstus

    参数
    同添加老师。

  • 响应
    同添加老师。

3.3.查询用户

根据id查询学生、老师或管理员信息。

  • 请求

    /users/get?id=6

    参数
    id 用户编号

  • 响应

        {
            "code": 0,
            "data": {
                "count": 1,
                "items": [
                    {
                        "id": "7",
                        "user_from": "zc",
                        "outer_id": null,
                        "phone": "13888888888",
                        "email": null,
                        "password": null,
                        "name": "王建",
                        "sex": null,
                        "icon": null,
                        "qq": null,
                        "address": null,
                        "comment": null,
                        "maintext": null,
                        "status": "1",
                        "add_time": "2018-06-15 11:08:27",
                        "update_time": "2018-06-15 11:08:27"
                    }
                ]
            }
        }

user_from 用户来源
outer_id 第三方用户编号
name
phone
email
password 系统不会返回用户密码,会返回null
sex
icon
address
comment
maintext
status 状态,1 正常 2 禁用 3 删除
add_time 添加时间
update_time 最后修改时间

3.4.修改用户

  • 请求

    /users/edit

    参数
    id 【必选】用户编号
    可以修改的属性,其他属性不能修改:
    name
    email
    icon
    address
    comment
    maintext

  • 响应

    {
        "code": 0
    }

4.用户管理

标签:_id   res   icon   password   其他属性   修改时间   word   返回   comment   

原文地址:http://blog.51cto.com/livestreaming/2129751

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!