我正在寻找一种基于提供的模式在JSON中生成随机有效载荷的方法。环顾四周,我发现一些有用的东西,但是没有很多github星星。 LINK
客观
能够根据提供的架构为有效载荷中的字段验证多个可能的值。
示例
对于模式-
let scrollCount = 0;
window.addEventListener("mousewheel", function(e){
if(e.wheelDelta < 0 && scrollCount < 20){
scrollCount++
}
else if(e.wheelDelta > 0 && scrollCount > -20){
scrollCount--
}
let x = scrollCount * window.innerWidth
let y = 30 * window.innerHeight
moveEye(irisLeft, x, y)
moveEye(irisRight, x, y)
console.log(scrollCount)
});
可能的有效载荷-
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
]
}
我希望我的建议很明确。