allgood:node.js 的超轻量级 JSON 模型验证

时间:2024-08-02 22:49:03
【文件属性】:

文件名称:allgood:node.js 的超轻量级 JSON 模型验证

文件大小:3KB

文件格式:ZIP

更新时间:2024-08-02 22:49:03

JavaScript

node.js 的超轻量级 JSON 模型验证 安装 npm install allgood 用法 验证模型 验证由要测试的 JSON 对象和 JSON 模式(模型的定义)组成。 模式中的键是您希望在测试对象中找到的键,模式的值是测试对象对应值的预期类型。 var allgood = require('allgood') valid = allgood.valid; var personSchema = {"name":"string", "age":"number"}; var newPerson = {name:"Harry Potter", "age":11}; if (valid(personSchema, newPerson)) { console.log("You're a wizard, Harry"); } 检查模型无效的原因 获取错误消息、确切丢失的键以及类


【文件预览】:
allgood-master
----test()
--------index.js(2KB)
----README.md(1KB)
----Makefile(47B)
----.gitignore(26B)
----index.js(2KB)
----package.json(549B)

网友评论