js-validator是Laravel风格的JavaScript对象验证库。使用js-validator来验证对象或者JSON是否符合规则非常方便,而且具有很好的可扩展性。举个例子var example = {      text: 'Hello world!',      date: '2015-07-07',      comments: null,    },    rules = {      text: 'required|string',      date: 'date|date_format:yyyy-MM-dd',      c