本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- sam123456gz
- e_e
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- lemonhandsome
- jh108020
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- zhanjia
- lzyfn123
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- johnsmith9th
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
rails 上读取csv文件 (来自stackoverflow)
今天要做读取csv文件里面的内容,本来项目里面有代码,可是找了半天就是没有找到。在网上找了一份。
前端代码
<%= form_for :mytest, :html =>{:multipart => true} do |f| %>
<%= f.file_field :myfile %>
<%= f.submit "Uploa ...
rails 3.2.10安装mysql2的坎坷路程
开始做rails,搭环境的过程一开始是非常顺利的,但是代码从git上拉回来在运行bundle install时,我开始泪奔了,所有的gem都安装好了就只剩下mysql2这个安装不成功,谷大神不给力啊,搜到的全是linux上使用apt-get来安装mysql2的解决方案,经过各种尝试在osx上终于安装上mysql2
问题所在:
Building native extensions. This c ...
rails3中rails命令整理
1.创建项目
rails new 项目名 参数
参数 -b, --builder-BUILDER 指定builder的路径
参数 -d, --database=DATABASE 指定数据库的种类
参数 -f, --force 在文件存在的情况,覆盖
参数 -G, --skip-git 不内置.gitignore, .gitkeep
参数 -h, --help 帮助
参数 -j ...
rails 页面动态title设置问题
在自己的页面上填入一下代码
<% content_for :title, "Title for specific page" %>
在模板页面的title修改为:
<title><%=h yield(:title) %></title>
参考资料引用http://stackoverflow.com/questions/18 ...
hello rails
用rails命令创建一个应用程序
rails new demo
cd demo
rails g controller home index
rails s
打开app/controllers/home_controller.rb文件,
def index
@time = Time.now
end
打开app/views/index.html.erb文件,
<h1>Hello ...
执行rails server 出现in `autodetect': Could not find a JavaScript runtime.
执行rails server
in `autodetect': Could not find a JavaScript runtime. See https://github.com/sstephenson/execjs for a list of available runtimes. (ExecJS::RuntimeUnavailable)
解决方案1:在GemFile(文件的位置在项目的 ...
rails中validates方法
1.不为空:validates :name,:presence=>{:message=>'blank is not allowed'}
2.唯一性:validates :name,:uniqueness:{:message=>'already exist!',:case_sensitive=>false}#case_sensitive区分大小写
3.长度:valida ...
Rails route constraints api 介绍
Rails 为route的路由约束提供了constraints 方法,具体的使用如下:
限制IP地址constraints(:ip => /192.168.\d+.\d+/) do
resources :posts
end
可以提供一个ip或者一个ip地址的范围进行限制,一旦检测到用户的ip地址符合限制范围,则会告知不存在此route。
匹配动态请求这个例子是控制rou ...