《Agile Web Develop》这本书里面只是简单介绍了下Rails ,许多东西为什么,以及更多有趣的东西都没有提到。
看别人项目源码后,才觉得Rails 的内容还真不是一般多。而ruby 随意修改内核功能的特性,更导致代码阅读起来额外麻烦。甚至不需要include,直接继承基类后extend就可以在其他地方使用了 - -
with_scope :ActiveRecord::Base
很方便的函数,用在需要不定参数查找时特好用
class Article < ActiveRecord::Base
def self.create_with_scope
with_scope(:find => { :conditions => "blog_id = 1" }, :create => { :blog_id => 1 }) do
find(1) # => SELECT * from articles WHERE blog_id = 1 AND id = 1
a = create(1)
a.blog_id # => 1
end
end
end
模板渲染
一般情况下,模板中只有一个<yield>用来填充内容。如果有特殊需要,比如需要额外的css,js 可以添加额外的 <%=yield:name_space %>
然后在需要使用的地方:
<% content_for :name_space do %>
<!-- code you wanna place here-->
<%end%>
过滤私密信息:
经常会发生这种情况,测试的时候用户的登录名,密码都在日志里面一览无余。如果觉得良心不安,使用这个:
filter_parameter_logging :password
这样会将和password 有关的内容过滤掉。
调试:
controller : raise sth
viewer: debug sth
console : y sth
routes 里面 member 和 collection 的区别:
比如 map.resources :days,member =>{:today=>:get}
map.resources :days,collection =>{:today=>:get}
一开始以为两种方法一样,member生成的路径是 get_day_path(:id) ,而collection生成的是get_days_path
关于 form_for :
一开始对 scaffold 后生成的 form_for 很好奇,因为在 new, edit 里面居然是相同的代码,连路径都没有。
很困惑后,查看源码才知道原因。Rails代码封装的太恐怖了,首先它会判断 form_for 的变量是否是个 new_record?
如果后面没有路径它会根据变量的属性来确定是新建还是修改。
分享到:
相关推荐
##### 1. The Future of Rails - **核心观点**:探讨Ruby on Rails未来的发展方向和技术趋势。 - **重要性**:对于开发者而言,了解Rails的发展趋势有助于规划个人或项目的技术栈发展方向。 - **应用场景**:适用于...
Rails 指南 参考: 地理编码 - 第 272 页 计算 AR 方法 - 第 279 页 枚举(用于草稿、发布、存档) - 第 291 页 使用 Postgres 的 hstore - 第 304 页 传递部分变量 - 第 326 页 目录 配置 对配置文件的更改需要重新...
zip_tricks 允许从Ruby输出流式,非倒带的ZIP文件。 最初是作为的精神继任者而写的,现在...深入探讨:从Rails发送一些大型CSV报告 最简单的方法是将ZipTricks::RailsStreaming模块包含在您的控制器中。 class Zips
Dig under the surface and explore Ruby's most advanced feature: a collection of techniques and tricks known as metaprogramming. In this book, you'll learn metaprogramming as an essential component of ...
10. 开发工具与框架:了解如何使用开发环境(如VS Code、Sublime Text),以及前端框架(如React、Vue、Angular),后端框架(如Node.js、Django、Ruby on Rails),能够加速开发进程。 以上只是"web-tips-and-...
We've even included a few silly tricks that were too cool to leave out, like how to blink the lights on your keyboard. <br> <br> The Ruby Cookbook is the most useful book yet written ...
ReactJS是用optimization tricks (无状态,纯渲染...)编写的。 pure front-end =服务器独立(使用任何您想用作服务器的资源:NodeJS,Rails,.NET ...) 包含和服务器实施 使用workbox-webpack-plugin缓存实现...
ReactJS是用optimization tricks (无状态,钩子,纯渲染,PureComponent ...)编写的。 pure front-end =服务器独立(使用任何您想用作服务器的资源:NodeJS,Rails,.NET ...) SPA但SEO和/或PWA友好,因为使用...