51CTO博客开发
Sublime 中文输入cd ~/.config/sublime-text-2/Packagesgit clone https://github.com/xgenvn/InputHelper.git+ 安装后重启 Sublime+ 默认的快捷键 Ctrl+Shift+Z+ 原文 http://www.mrxuri.com/index.php/2013/04/28/to-solve-sublime-
rails 采用 HMAC-SHA1 进行加密,加密过程由ActiveSupport::MessageVerifier类实现:secret ='b6ff5a9c3c97bf89afe9a72e6667bafe855390e8570d46e16e9760f6394'+'4ab05577b211ec2f43f6c970441518f0241775499bde055078f754c33b62f68ba2
kind_of? 和 is_a? 是同义词,用于判断某个对象是某个类或者子类的实例instance_of? 仅判断某个对象是否是某个类的实例
helper_method: 将controller中定义的共享给view和helper使用,在helper中定义一个同名的方法,该方法最终调用controller中方法helper则是将整个文件mixin如view
Rails.application.routes.url_helpers
helper:helper.number_to_human 20查看路由: app.root_path调试路由:app.get app.root_path控制器: ActionController::Base::ApplicationController.new
nil?作用于任何对象,当对象是nil是返回trueempty?作用于String Hash Array,当他们长度为0时返回true," ".empty? 返回falseblank?作用于任何对象,当对象是nil false empty 时返回true,对于非空但是包含空格的字符串返回值为true,前两个属于ruby中的方法,blank?则是rails中添加的方法 !obj.blan
新建 config/initializers/quiet_assets.rbif Rails.env.development? Rails.application.assets.logger = Logger.new(File.join(Rails.root,'log/assets.log')) Rails::Rack::Logger.class_eval do  
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号