0

aldeed:simple-schema を使用して入力を検証するプロジェクトで meteor を使用しています。私のスキーマは次のようになります。

const name = {
  type: 'String',
  regEx: /^[\w\d]+$/,
  optional: false
};

 const nationalId = {
  type: 'String',
  regEx: /^[\w\d]+$/,
  optional: true
};

schema = new SimpleSchema({
  firstName: name,
  lastName: name,
  nationalId
});

非文字列値を渡すか、名前フィールドの必須値を除外することで、スキーマが機能することをテストしました。これらはすべて期待どおりに機能しました。

ただし、正規表現の検証は機能していません。「123%^&」など、どんな文字列でも受け付けるようです。ここでこれらの文字列をいくつかテストしましたが、すべて合格するはずはありません。単純なスキーマで事前定義された正規表現以外を使用したのはこれが初めてで、何かを見逃したのではないかと思います。

同じ効果で、正規表現を配列に配置しようとしました。

Meteor 1.2 を使用しており、すべてのパッケージを最新バージョンに更新しました。

accounts-password     1.1.4  Password support for accounts                                                   
accounts-ui           1.1.6  Simple templates to add login widgets to an app                                 
aldeed:collection2    2.9.0  Automatic validation of insert and update     operations on the client and server.  
aldeed:simple-schema  1.5.3  A simple schema validation object with reactivity. Used by collection2 and au...
blaze-html-templates  1.0.1  Compile HTML templates into reactive UI with Meteor Blaze                       
ecmascript            0.1.6* Compiler plugin that supports ES2015+ in all .js files                          
es5-shim              4.1.14  Shims and polyfills to improve ECMAScript 5 support                            
fourseven:scss        3.4.1  Style with attitude. Sass and SCSS support for Meteor.js (with autoprefixer a...
jquery                1.11.4  Manipulate the DOM using CSS selectors                                         
kadira:blaze-layout   2.3.0  Layout Manager for Blaze (works well with FlowRouter)                           
kadira:flow-router    2.10.1  Carefully Designed Client Side Router for Meteor                               
mdg:validated-method  1.0.1  A simple wrapper for Meteor.methods                                             
meteor-base           1.0.1  Packages that every Meteor app needs                                            
meteortoys:allthings  2.3.1  Insanely Handy Development Tools                                                
mobile-experience     1.0.1  Packages for a great mobile user experience                                     
mongo                 1.1.3  Adaptor for using MongoDB and Minimongo over DDP                                
session               1.1.1  Session variable                                                                
standard-minifiers    1.0.2  Standard minifiers used with Meteor apps by default.                            
tracker               1.0.9  Dependency tracker to allow reactive callbacks                                  
useraccounts:core     1.13.1  Meteor sign up and sign in templates core package.                             
wolves:bitters        3.1.0  Meteor 1.2.0+ - Scaffold styles, variables and structure for Bourbon projects.  
wolves:bourbon        3.1.0  Meteor 1.2.0+ - Bourbon is a simple and lightweight mixin library for Sass.     
wolves:neat           3.1.0  Meteor 1.2.0+ - A lightweight, semantic grid framework built on top of Bourbon. 
4

1 に答える 1

0

私は自分で問題を解決しました。上記のコメントに従って、タイプを次のように設定する必要がありました

type: String

それ以外の

type: "String"

これにより、正規表現が起動されました。

于 2016-02-27T15:09:37.147 に答える