
Ruby on Rails学习日志
学习记录
Alance9
这个作者很懒,什么都没留下…
展开
-
Ruby on Rails 使用 Vagrant box 搭建环境
在Windows下安装Ruby有点麻烦,为了节约⼤家的时间,统⼀开发环境,可以采⽤ Vagrant box 的⽅式安装环境。Vagrant是⼀个虚拟机外挂,可以简化虚拟机软件操作。安装 Vagrant boxVagrant box --下载地址:https://www.virtualbox.org/wiki/Downloads选择需要的版本下载并安装安装 VagrantVa...原创 2020-05-11 17:20:52 · 207 阅读 · 0 评论 -
Rails 单图片上传与删除
学生图片上传(StudentPhoto)在路由 routes.rb 添加上传方法 uploadFile resources :student_photos do member do # 上传图片 post :uploadFile end endview -》 StudentPhoto -》form.ht...原创 2020-05-05 19:03:23 · 368 阅读 · 0 评论 -
Rails 时区更改
进入项目,按一下步骤修改时区原创 2020-01-13 17:37:38 · 214 阅读 · 0 评论 -
Rails + Select2 完美解决多选框问题
国内关于rails这方面的资料太少了,想写个好看又实用的多选框,原创 2020-01-13 15:52:13 · 781 阅读 · 0 评论 -
Ruby on Rails undefined method `where' for xx:Module Did you mean? when的解决方法
undefined method `where' for Admin::Teacher:Module Did you mean? when无法找到该Teacher方法,在model模型中,可能有Teacher方法而造成冲突。在写controller控制器时,以下命名方式将会带来问题:module Admin module Teacher class TeacherPhotosC...原创 2020-01-02 13:46:16 · 491 阅读 · 0 评论 -
Ruby on Rails 快速搭建环境
Ruby on Rails 是一个能实现快速便捷开发、部署、维护的MVC框架。Ruby 是语言,Rails 是框架。这里搭建的是 ruby 2.3.3 + rails 3.2.13 开发环境,如有版本需要,自行下载安装。ruby 2.3.3 下载链接:https://pan.baidu.com/s/1W-gGc5zYnoW5DjUW4ZzOGQ 提取码:lbip其他版本下载地址:htt...原创 2019-12-04 15:46:29 · 354 阅读 · 0 评论 -
Ruby sqlite3遇到的问题
我的配置版本创建项目rails new demo名称需要到目录下的Gemfile修改source 'http://gems.ruby-china.com'运行bundle install,会遇到找不到该版本sqlite3的问题Could not find gem ‘sqlite3 (= 1.3.0) x64-mingw32’ in any of the gem sourcesliste...原创 2019-12-03 10:04:59 · 442 阅读 · 0 评论