mock接口模板

接口地址: url:'/member/list'    method:'get'

{
  "code": 2000,
  "flag": true,
  "message": "查询成功",
  "data|20": [{
    "id|+1": 10,
    "cardNum": "@integer(100000000000,999999999999)", 
    "name": "@cname",
    "birthday": "@date",
    "phone": /^1[3578]\d{9}$/, // 11个数字0-9间的数字
    "integral": "@integer(0, 500)",
    "money": "@float(0, 1000, 1, 2)", // 0-1000小数,1-3位小数位
    "payType|1": ['微信', '支付宝', '现金', '银行卡'], // 4选 其1
    "address": "@county(true)"
  }]
}

猜你喜欢

转载自www.cnblogs.com/zhaodz/p/11741476.html