Nodejs 驗證器:revalidator

jopen 11年前發布 | 15K 次閱讀 Node.js 開發 revalidator

revalidator 是一款跨瀏覽器的 Node.js 驗證器,是 resourceful 和 flatiron 正在使用的驗證器。

示例

revalidator 的核心是很簡單和簡潔的: revalidator.validate(obj, schema):

  var revalidator = require('revalidator');

  console.dir(revalidator.validate(someObject, {
    properties: {
      url: {
        description: 'the url the object should be stored at',
        type: 'string',
        pattern: '^/[^#%&*{}\\:<>?\/+]+$',
        required: true
      },
      challenge: {
        description: 'a means of protecting data (insufficient for production, used as example)',
        type: 'string',
        minLength: 5
      },
      body: {
        description: 'what to store at the url',
        type: 'any',
        default: null
      }
    }
  }));

項目主頁:http://www.baiduhome.net/lib/view/home/1388106120609

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!