rails 常用的验证方法 validates (转)
摘要:Agile Web Development with Rails17.4 validationvalidate 在save的时候激活validate_on_create createvalidate_on_update update通过这三个方法可以添加validates_XXX_xxx没有的功能错...
阅读全文
rails常用验证方法 (转)
摘要:validates_presence_of:login,:message=>"用户名不能为空!"validates_length_of:login,:minimum=>4,:message=>"用户名长度须为4到20位字母或数字!"validates_uniqueness_of:login,:cas...
阅读全文
Active Record: 資料庫遷移(Migration) (转)
摘要:Active Record:資料庫遷移(Migration)Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the...
阅读全文
rails之 Migrations (转)
摘要:1.简介在rails中用migration可以很方便的管理数据库的结构。可以创建数据库,创建表,删除表,添加字段,删除字段,整理数据。migration就是一系列的class,这些类都继承了ActiveRecord::Migration类。class CreateProducts false ...
阅读全文