birthdayMiniApp
  1. 测试
birthdayMiniApp
  • 测试
    • 根据 dataSchema 生成测试数据
      POST
    • 小程序端底部菜单装修列表(分页)
      GET
    • 写入log文件
      POST
  • 用户
    • 创建用户
      POST
    • 用户登录
      POST
    • 用户列表
      GET
    • 删除指定用户
      DELETE
    • 获取当前登录用户的基础信息与个人资料内容
      GET
  • 简历
    • 创建简历
      POST
    • 获取用户简历列表
      GET
    • 获取简历详情
      GET
    • 更新简历
      PUT
    • 删除简历
      DELETE
  • 天气
    • 天气查询-高德api
      GET
  • 工具
    • 翻译
      POST
    • 非法请求日志-分页查询
      GET
  • 系统
    • 单文件上传(图片优先)
      POST
    • 批量上传文件
      POST
    • 兼容路径:单文件上传
      POST
    • 兼容路径:批量上传
      POST
  • 装修-自定义装修
    • 自定义装修页面列表(分页)
      GET
    • 创建自定义装修页面
      POST
    • 更新自定义装修页面
      PUT
    • 获取自定义装修页面详情
      GET
    • 删除自定义装修页面
      DELETE
  • 装修-系统装修
    • 系统装修页面详情(按 key/scene 查询)
    • 获取当前激活的导航配置(仅返回一条)
    • 创建导航配置
    • 更新导航配置
    • 删除导航配置
    • 导航配置详情
    • 导航配置列表(分页)
    • 创建系统页面
    • 更新系统页面
    • 删除系统页面
    • 系统页面详情
    • 系统页面列表(分页)
  • 资源
    • 获取静态图标素材(按分类分组,支持 cate 过滤)
  • 认证
    • 微信小程序一键登录:code 换 openid,判断是否已绑定手机号
    • 绑定手机号并生成登录 token
  • 门店
    • 创建门店
    • 更新门店
    • 门店列表
    • 删除门店
  • 数据模型
    • TestController-getTestLogBodyRequest
    • ResumeController-createResumeBodyRequest
    • ResumeController-getResumeListResponse
    • FakeApiController-generateBodyRequest
    • DecorateController-createBodyRequest
    • AuthWeappController-weappLoginBodyRequest
    • TestController-getTestLogResponse
    • FakeApiController-generateResponse
    • DecorateController-updateBodyRequest
    • AuthWeappController-weappBindBodyRequest
    • UserController-CreateUserBodyRequest
    • ResumeController-getResumeDetailResponse
    • NavigationController-createBodyRequest
    • UserController-CreateUserResponse
    • ResumeController-updateResumeBodyRequest
    • NavigationController-updateBodyRequest
    • UserController-getUserListResponse
    • UserController-UserLoginBodyRequest
    • ResumeController-updateResumeResponse
    • UserController-deleteUserResponse
    • UserController-UserLoginResponse
    • ResumeController-deleteResumeResponse
    • IconsController-listResponse
    • ToolController-translateWordBodyRequest
    • ToolController-translateWordResponse
    • ToolController-getIllegalRequestListResponse
    • SystemPageController-createBodyRequest
    • SystemPageController-updateBodyRequest
    • ShopController-createBodyRequest
    • ShopController-createResponse
    • UploadController-uploadImageBodyRequest
    • ShopController-updateBodyRequest
    • ShopController-updateResponse
    • ShopController-listResponse
    • ShopController-deleteResponse
  1. 测试

根据 dataSchema 生成测试数据

POST
/fakeApi/generate

请求参数

Header 参数

Body 参数application/json

示例
{
    "dataSchema": {
        "type": "object",
        "schema": {
            "property1": {
                "type": "string",
                "required": true,
                "enumAuto": 0,
                "generator": "string",
                "default": null,
                "min": 0,
                "max": 0,
                "children": {
                    "property1": null,
                    "property2": null
                }
            },
            "property2": {
                "type": "string",
                "required": true,
                "enumAuto": 0,
                "generator": "string",
                "default": null,
                "min": 0,
                "max": 0,
                "children": {
                    "property1": null,
                    "property2": null
                }
            }
        }
    },
    "count": 10
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/fakeApi/generate' \
--header 'bladeauth: {{auth}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "dataSchema": {
        "type": "object",
        "schema": {
            "property1": {
                "type": "string",
                "required": true,
                "enumAuto": 0,
                "generator": "string",
                "default": null,
                "min": 0,
                "max": 0,
                "children": {
                    "property1": null,
                    "property2": null
                }
            },
            "property2": {
                "type": "string",
                "required": true,
                "enumAuto": 0,
                "generator": "string",
                "default": null,
                "min": 0,
                "max": 0,
                "children": {
                    "property1": null,
                    "property2": null
                }
            }
        }
    },
    "count": 10
}'

返回响应

🟢200成功
application/json
success
Body

示例
{
    "code": 0,
    "success": true,
    "msg": "string",
    "data": null
}
修改于 2025-11-19 18:58:28
下一页
小程序端底部菜单装修列表(分页)
Built with