摘要:
Rspec测试 Rspec(基本测试) 安装 重要操作 文件: spec/rails_helper.rb 去掉注释(23行):...spec/support/**/*.rb.. 第一个测试 生成模型 rails g model book name author price spec/models/b 阅读全文
摘要:
来源:https://ruby-china.org/topics/25822 1、创建新项目 rails new api_demo 2、生成控制器: app/controllers/api/v1/base_controller.rb, config/routes.rb, app/controller 阅读全文
摘要:
rails上传图片需要用到的gem: gem 'carrierwave'gem 'mini_magick' 在项目Gemfil中添加上面的两个gem,然后bundle install 然后创建modle,比如user,存储头像字段icon; 生成表后,执行rails g uploader icon 阅读全文