Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このサンプルのように、フィールドに複数のバリデーターを設定したい。しかし、そのうちの1つだけがうまく機能します。なぜ?
db.aetitles.hospital_id.requires = IS_NOT_EMPTY() db.aetitles.hospital_id.requires = IS_IN_DB(db, db.hospitals.id, '%(title)s')
私はこれを試しましたが、これは正しかったです:
db.aetitles.hospital_id.requires = [IS_NOT_EMPTY(), IS_IN_DB(db, db.hospitals.id, '%(title)s')]