摘要: https://ruby-doc.org/core-2.5.3/Float.html 阅读全文
posted @ 2019-09-19 16:12 吕兴杰 阅读(100) 评论(0) 推荐(0) 编辑
摘要: SpecialGroup.group(:special_type).countselect special_type,count(*) from special_groups group by special_type SpecialGroup.group(:special_type).count( 阅读全文
posted @ 2018-06-12 11:00 吕兴杰 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: Table.select("DISTINCT name").map(&:name) : DISTINCT name去重查询name Table.active.map{|x| x.name}.uniq :查询出来后做去重操组 阅读全文
posted @ 2018-06-12 10:14 吕兴杰 阅读(476) 评论(0) 推荐(0) 编辑
摘要: gem 'ransack' eq: "等于" eq_any: "等于任意值" eq_all: "等于所有值" not_eq: "不等于" not_eq_any: "不等于任意值" not_eq_all: "不等于所有值" matches: "符合" matches_any: "符合任意条件" mat 阅读全文
posted @ 2018-05-31 17:39 吕兴杰 阅读(322) 评论(0) 推荐(0) 编辑
摘要: Ruby Hash的常用函数 2013年07月25日 20:55:01 阅读数:3102 1、Hash表的生成 使用第一种形式时,参数的个数必须是偶数.(奇数位参数是索引,偶数位参数是元素值). 使用第二种形式(将一个哈希表对象指定给参数)时, 将生成并返回一个与指定哈希表相 同的全新的哈希表.(生 阅读全文
posted @ 2018-05-24 17:53 吕兴杰 阅读(640) 评论(0) 推荐(0) 编辑
摘要: 步骤一:删除当前目录下所有隐藏.DS_store文件(请一定要在当前目录执行) sudo find ./ -name ".DS_Store" -depth -exec rm {} \; 步骤二: 设置不再产生选项, 执行如下命令(建议不要执行,DS_store有它的作用的) defaults wri 阅读全文
posted @ 2017-07-20 13:04 吕兴杰 阅读(442) 评论(0) 推荐(0) 编辑
摘要: Rspec测试 Rspec(基本测试) 安装 重要操作 文件: spec/rails_helper.rb 去掉注释(23行):...spec/support/**/*.rb.. 第一个测试 生成模型 rails g model book name author price spec/models/b 阅读全文
posted @ 2017-02-28 17:56 吕兴杰 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 来源:https://ruby-china.org/topics/25822 1、创建新项目 rails new api_demo 2、生成控制器: app/controllers/api/v1/base_controller.rb, config/routes.rb, app/controller 阅读全文
posted @ 2017-02-28 15:39 吕兴杰 阅读(2091) 评论(0) 推荐(0) 编辑
摘要: rails上传图片需要用到的gem: gem 'carrierwave'gem 'mini_magick' 在项目Gemfil中添加上面的两个gem,然后bundle install 然后创建modle,比如user,存储头像字段icon; 生成表后,执行rails g uploader icon 阅读全文
posted @ 2017-02-28 11:35 吕兴杰 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 我是来鼓吹使用 Rails 写 API 的。原文在此: https://labs.kollegorna.se/blog/2015/04/build-an-api-now/原文有一个很大的缺陷就是读者无法按照它的步骤一步一步的去实现一个可以运行的 demo, 这对经验丰富的开发 者可能不算是一个问题, 阅读全文
posted @ 2017-02-07 17:19 吕兴杰 阅读(1475) 评论(0) 推荐(0) 编辑