官方文档
{
"code": 0,
"data": {
"projects|5-10": [{ //随机生成5-10条
"adpartment|1": ["研发部", "市场部", "运营部"],
"address": "@county(true)",
"position": "员工",
"post": "admin",
}]
}
}
"id|+1": 1, //id的递增
"name": "@cname", // 姓名
"email": "@email", //邮箱
"mobile": /^(13[0-9]|15[012356789]|166|17[3678]|18[0-9]|14[57])[0-9]{8}$/, //生成手机11位号 可以使用正则表达式
"sex": "@boolean, // 随机boolean
"Boolean": "@boolean", // 布尔值
"natural": "@natural", // natural( min, max )
"integer": "@integer", // integer( min, max )
"float": "@float(22,99,1,2)", // float( min, max, dmin, dmax )
"string": "@string", //string(type,min,max) lower小写,upper大写,number数字,symbol符号,
"range": "@range", //range( start, stop, step ) step为间隔为,最后返回值为数组
"date": "@date", // 日期
"time": "@time", // 时间
"dataTime": "@datetime", // 日期+时间
"Now": "@now", // 当前的日期时间
凡是@后加c就是为中文;例如name为英文,cname则是中文
"paragraph": "@cparagraph", // 段落
"title":"@ctitle(1,10)",//标题,长度为1-10
"sentence": "@csentence", //句子
"first": "@cfirst", //姓氏
"region": "@region", //方位
"province": "@province", //省份
"city": "@city", // 城市 +(true),可以获取到上一级,例如:@city(true) 可以获取到省市
"avatar":"@image"
"avatar":"@image('50x50','red','#fff','文字‘)"
"city|2-4": {
"110000": "北京市",
"120000": "天津市",
"130000": "河北省",
"140000": "山西省"
}
"city|1": [
"北京市",
"天津市",
"河北省",
"山西省"
]
"avatar":"@image('50x50','@color','#fff','@word‘)"