配种页宠物列表接口 websocket测试 GET http://127.0.0.1:3000/api/mating?start= 接口描述 start 开始页 说明 / 示例 ```js 请求示例 GET => http://127.0.0.1:3000/api/mating?start=1 响应示例 { code: 1000, msg: '', data: { current: 1, //当前页 size: 8, //本页数据总数 total: 412,//数据库所有数据数量 mating: [ { id: '52689ef7-f528-4fef-91f2-8af50c440b46',//记录编号 img: 'http://scjou.cn/dog1000',//图片地址 names: '五汪',//宠物名 sex: 1,//宠物性别 0 母 1 公 variety: '金毛' // 宠物品种 }, { id: '39ceb297-594e-4431-a2c8-b2904b1da690', img: 'http://scjou.cn/cat2000', names: '五喵', sex: 1, age: '7岁', variety: '橘猫' }, {id : '', img : '', names : '', sex : '', age : '', variety : '', pay : ''}, {id : '', img : '', names : '', sex : '', age : '', variety : '', pay : ''}, …… …… ] } } ```
```js 请求示例 GET => http://127.0.0.1:3000/api/mating?start=1 响应示例 { code: 1000, msg: '', data: { current: 1, //当前页 size: 8, //本页数据总数 total: 412,//数据库所有数据数量 mating: [ { id: '52689ef7-f528-4fef-91f2-8af50c440b46',//记录编号 img: 'http://scjou.cn/dog1000',//图片地址 names: '五汪',//宠物名 sex: 1,//宠物性别 0 母 1 公 variety: '金毛' // 宠物品种 }, { id: '39ceb297-594e-4431-a2c8-b2904b1da690', img: 'http://scjou.cn/cat2000', names: '五喵', sex: 1, age: '7岁', variety: '橘猫' }, {id : '', img : '', names : '', sex : '', age : '', variety : '', pay : ''}, {id : '', img : '', names : '', sex : '', age : '', variety : '', pay : ''}, …… …… ] } } ```