《Ruby的25个编程细节_linuxshell编程实例.docx》由会员分享,可在线阅读,更多相关《Ruby的25个编程细节_linuxshell编程实例.docx(15页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、Ruby的25个编程细节_linuxshell编程实例 这篇文章主要介绍了Ruby的25个编程细微环节(技巧、好用代码段),本文干脆给出主题和相应代码,须要的挚友可以参考下 1.try 恒久不会抛出异样 在 没有的时候 返回 nil 代码如下: province_id = Province.find_by_name(prov).try(:id) 2.find(:first, :condotions) 方法 不言而与 代码如下: mobile_info = MobileInfo.find(:first, :conditions => mobile_num = ? , mobile_num.
2、to_i) 3.find(:all, :select, :conditions) 代码如下: support_amount_a = ProvinceMerchantChangeValue.find(:all, :select => DISTINCT change_value_id, :conditions => status = 1 and merchant_id = ? and province_id =? and channel_id in (select id from channels where status = 1), merchant_id, province_id)
3、.map |cv| cv.change_value_id .compact support_amount_s = ChangeValue.find(:all,:select => price ,:conditions => id in (?), support_amount_a) .map |cv| cv.try(:price).to_i .compact 4.发送post恳求 可以在shell中执行 代码如下: curl -d channel=中信异度支付&action_type=娱人节-手机充值&user_indicate=139117319101&original_amoun
4、t=10100 xx.xxx.xxx:3000/search.json 5.Ruby 中纯数据结构 ( Struct 与 OpenStruct ) 讲一下它俩之间的区分: Struct 须要开头明确声明字段; 而 OpenStruct 人如其名, 随时可以添加属性 Struct 性能优秀; 而 OpenStruct 差点, 详细的性能差距可看这里:/questions/1177594/ruby-struct-vs-openstruct Struct 是 Ruby 说明器内置, 用 C 实现; OpenStruct 是 Ruby 标准库, Ruby 实现 API 不同: Struct API 与
5、 OpenStruct 6. MIme:Type.register 代码如下: Mime:Type.register application/json, :ejson config/initializers/mime_types.rb 7.config/initializers/secure_problem_solved.rb 代码如下: ActiveSupport:CoreExtensions:Hash:Conversions:XML_PARSING.delete(symbol) ActiveSupport:CoreExtensions:Hash:Conversions:XML_PARSIN
6、G.delete(yaml) 8.config/initializers/new_rails_default.rb 代码如下: if defined?(ActiveRecord) # Include Active Record class name as root for JSON serialized output. ActiveRecord:Base.include_root_in_json = true # Store the full class name (including module namespace) in STI type column. ActiveRecord:Bas
7、e.store_full_sti_class = true end ActionController:Routing.generate_best_match = false # Use ISO 8601 format for JSON serialized times and dates. ActiveSupport.use_standard_json_time_format = true # Dont escape HTML entities in JSON, leave that for the #json_escape helper. # if youre including raw j
8、son in an HTML page. ActiveSupport.escape_html_entities_in_json = false 9.MemCacheStore 缓存 代码如下: _cache = ActiveSupport:Cache:MemCacheStore.new( CONFIGhost, :namespace => #CONFIGnamespace:#name ) localhost:callback_lock _cache.write(pay_channel.channel_id,true) v = _cache.read(pay_channel.channel
9、_id) if v.nil? | v != true return false else return true end end 10.联合索引 代码如下: gem composite_primary_keys, 6.0.1 https:/momoplan 0.Hash assert_valid_keys 白名单 11.puma -C puma_service_qa.rb 12.pow 13. Time 代码如下: start_time = start_time.to_s.to_datetime.at_beginning_of_day end_time = end_time.to_s.to_d
10、atetime.end_of_day 14.merchant.instance_of? MplusMerchant 代码如下: m_order:merchant_id = (merchant.instance_of? MplusMerchant) ? merchant.id : merchant 15.will_paginate rails 安装之后须要修改config/environment.rb文件 在文件的最终添加: 代码如下: require will_paginate 修改controller文件中的index方法: # products = Product.find(:all) p
11、roducts = Product.paginate :page => params:page, :per_page => 2 .pagination = will_paginate mplus_orders, :class => digg_pagination 最好有个include 16. # Excel Generator 代码如下: gem spreadsheet, > 0.7.3 PROVINCE = %w 安徽 北京 福建 甘肃 广东 广西 贵州 海南 河北 河南 黑龙江 湖北 湖南 吉林 江苏 江西 辽宁 内蒙古 宁夏 青海 山东 山西 陕西 上海 四川
12、天津 西藏 新疆 云南 浙江 重庆 MONTH = 1.upto(12).to_a def self.total_to_xls(year = 2022, opts = ) book = Spreadsheet:Workbook.new sheet1 = book.create_worksheet months = MONTH months = opts:month.to_s.split(/,/) if opts:month fixed_row = months.collect |m| m.to_s + 月 .insert(0, ) sheet1.row(0).concat(fixed_row)
13、 row1 = (months.size - 1).times row1 << 用户数, 金额, 订单数 sheet1.row(1).concat(row1.flatten!) row = 2 sheet1.row(row).insert(0, 全国) months.each_with_index do |m, i| sheet1.row(row).insert(i*3 + 1, self.monthly_users_count(m) sheet1.row(row).insert(i*3 + 2, self.monthly_amount(m) sheet1.row(row).ins
14、ert(i*3 + 3, self.monthly_orders_count(m) end PROVINCE.each do |province| row += 1 sheet1.row(row).insert(0, province) months.each_with_index do |m, i| sheet1.row(row).insert(i*3 + 1, self.monthly_users_count_by_province(m, province) sheet1.row(row).insert(i*3 + 2, self.monthly_amount_by_province(m,
15、 province) sheet1.row(row).insert(i*3 + 3, self.monthly_orders_count_by_province(m, province) end end path = tmp/phone_recharge.xls book.write path path end 17. inject() 代码如下: selected_conditions = base_conditions.inject() do |hash, data| hashdata.first = st unless st.blank? hash end 18.time_str.ins
16、tance_of? 代码如下: return time_str if time_str.instance_of? Time 19.Person.instance_eval 代码如下: Person.instance_eval do def species Homo Sapien end end 20.class_eval 代码如下: class Foo end metaclass = (class << Foo; self; end) metaclass.class_eval do def species Homo Sapien end end end 21.Ruby中 respo
17、nd_to? 和 send 的用法 galeki.is-/posts/183.html 因为obj对象没法响应talk这个消息,假如运用 respond_to? 这个方法,就可以实现推断对象能否响应给定的消息了 代码如下: obj = Object.new if obj.respond_to?(talk) obj.talk else puts Sorry, object cant talk! end request = gets.chomp if book.respond_to?(request) puts book.send(request) else puts Input error en
18、d 22.method_missing,一个 Ruby 程序员的梦中情人 代码如下: def method_missing(method, *args) if method.to_s = /(.*)_with_cent$/ attr_name = $1 if self.respond_to?(attr_name) %.2f % (self.send(attr_name).to_f / 101.00) else super end end end 23.chomp chomp方法是移除字符串尾部的分别符,例如n,r等.而gets默认的分别符是n 24. hash.each_pair|k,v| &
19、 send() 代码如下: if bank_order.present? data_hash.each_pair |k, v| bank_order.send(#k=, v) else bank_order = BankOrder.new data_hash end 25.config.middleware 通过 rake -T 可以查看, 在config/ - 去除不必的 middleware 26.1.day.ago.strftime(%Y%m%d) 第15页 共15页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页第 15 页 共 15 页