http://guides.rubyonrails.org/layouts_and_rendering.html 中文 This guide covers the basic layout features of Action Controller and Action View After reading the guide, i will know: 1.How to use the various rendering methods bulit into Rails. 2.How to…
Active Record validation: new_record?()//用于验证刚新建,但没存入database中的数据 ,返回true或false persisted?() //和new_record/()正相反,从英文意看出,Returns true if the record is persisted.it's not a new record and it was not destroyed. create //验证失败仅仅不会执行代码,返回false. create! //带…
Object 也是一种数据类型,可以有属性,有method. 反之,在Ruby中,每一种数据类型都是Object.如String,Integer,Float,Array,Hash. IN Ruby everything is a object! http://chentianwei-blog.logdown.com/posts/1534325 http://chentianwei-blog.logdown.com/posts/1534244 Class定义Object Class就像是模具板,定…