多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ### 用户属性设置列表 #### URL >web/index.php?c=user&a=fields&do=display #### 请求方式 >GET #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | keyword | varchar | 否 | 关键字 | | | #### 返回数据 ``` { "message": { "errno": 0, "message": { "fields": [ { "id": "6", "field": "vip", //字段名 "available": "0", //1启用0未启用 "title": "VIP级别", //标题 "desc<x>ription": "", //描述 "displayorder": "0", //排序 //越大越靠前 "required": "0", //是否必填 1是0否 "unchangeable": "0", //提交后不可修改 "showinregister": "0", //1注册显示0注册不显示 "field_length": "64" //字段长度 }, { "id": "2", "field": "nickname", "available": "1", "title": "昵称", "desc<x>ription": "", "displayorder": "50", "required": "0", "unchangeable": "0", "showinregister": "1", "field_length": "64" } ] } }, "redirect": "", "type": "ajax" } ``` ### 用户属性开关 #### URL >web/index.php?c=user&a=fields&do=display #### 请求方式 >POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | id | int | 是| 字段id | | | key | varchar | 是| 需要打开或者关闭的属性 | available 启用状态 showinregister 注册显示状态 required 是否必填状态 | | val | int | 是| 开启或者关闭 | 开启 1 关闭 0| #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "修改成功!" }, "redirect": "http://prox.we7.com/./", "type": "ajax" } ``` 错误: ``` { "message": { "errno": 0, "message": "修改失败!" }, "redirect": "http://prox.we7.com/./", "type": "ajax" } ``` ### 修改或者添加用户属性 #### URL >web/index.php?c=user&a=fields&do=post #### 请求方式 >POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | field | array | 是| 用户字段信息数组 | field[id] 用户属性id(如果不传id就是新增用户属性) field[field] 字段名 field[available] 是否启用状态 1是0否 field[title] 字段标题 field[desc<x>ription] 字段描述 field[displayorder] 排序 越大越靠前 field[required] 是否必填字段 1是0否 field[unchangeable] 是否可修改 1是0否 field[showinregister] 是否注册显示 1是0否 field[field_length] 字段长度 | #### 返回数据 正确: ``` { "message": { "errno": 0, "message":"更新字段成功", "redirect": "http://prox.we7.com/web/index.php?c=user&a=fields&", "type": "ajax" } ``` 正确: ``` { "message": { "errno": -1, "message":"抱歉,请填写资料名称!", "redirect": "http://prox.we7.com/./", "type": "ajax" } ```