摘要:
前天在使用mongoid的时候用了class Article include Mongoid::Document field :name field :content field :published_on, type: Dateend 在相应的视图中添加了一些对应属性的试图<%= f.date_select :published_on %> 当创建一个article成功后,在展现的html中published_on对应的是空的,后来在数据库中查看了一下,插入进去了,但是插入的不是published_on而是变成了三个属性published_on(1i) 和 published_o 阅读全文
摘要:
每天学一点,天天都是进步!content_for在次模板中使用,比如index.html.erb或者其他,对应的yield在主模板中使用,对于index.html.erb来说的application.html.erb中使用。在index.html.erb中有如下代码:<% content_for(:list) do %> <ol> <% for i in 1..5 %> <li>I'm <%= i %> !</li> <% end %> </ol><% end %> 然后在app 阅读全文