本人 211 大学本科三年级学生,2015 年七月份开始学习 rails 开发,希望能求得一次暑期实习的工作机会。
个人项目:http://lisiur.com 后台用户名:guest 密码:guest 源码:https://coding.net/u/daikanshan/p/Blog/git
if !weather.nil?
session[:current_weather] = 'rain' if weather.include?("雨")
session[:current_weather] = 'snow' if weather.include?("雪")
session[:current_weather] = 'cloud' if weather.include?("云")
end
if !weather.nil? 建议换成 if weather.present?
还会根据不同天气给出不同背景吗?特效很 nice 啊感觉!