57篇文章 · 13462字 · 8人关注
gem install http gem install nokogiri
toastr_rails是一个基于toastr的gem。toastr的demo用法直接看usage就好了。 gem "toastr_rails"...
rails的过程是先走到routes、然后去对应的controller找相应的action方法、再去model(如果需要的话)、然后去view渲...
从view中只能调用controller中的public方法(action) 每次从view中调用action,都有一个response,要么是...
ActionCable的理解,分三个步骤: create a channel,生成一个app/channels/application_cabl...
find根据id进行查询,像Product.find(3),查询语句是Product Load (0.1ms) SELECT "products...
gem 'pry-rails',然后bundle install rails c就会打开pry了,同时也能进行之前rails c中的操作。 将b...
model一个person可以有多个son,但只有一个father。具体代码如下: 这样就能使用person.sons来查看person的儿子。...
缓存指南总结 Web 应用中常用的各种 Cache 最常用的cache应该是页面的片段缓存和底层缓存。 片段缓存ActionView::Help...
文集作者