原因其实提示信息也告诉你了
后面加版本号……
ARRAY = [1, 2, 3, 1, '2', 4, '5', 6, 7, 8, 9,'10']
def slow
hash = {}
ARRAY.each_with_index do |item, index|
hash[index] = item
end
hash
end
def fast
hash = {}
index = 0
length = ARRAY.length
while index < length
hash[index] = ARRAY[index]
index += 1
end
hash
end
这个例子是让人回到原始社会么
有没有邀请码?求一个
同样的目录
'zh-CN':
activerecord:
user: '用户'
attributes:
user:
name: '用户名'
email: '电子邮件'
password: '密码'
password_confirmation: '密码确认'
再 application.rb 配置下 locale
知道有个 rubychina4android,here on Github
#8 楼 @realwol #9 楼 @xieyu33333 确实,大家互相交流,如果有好的参考书,不妨分享一下。 看了 LZ 最近关于元编程的一些学习总结,其实还都不错。
注 3 的代码里有点小问题
obj.instance_eval(@x}
还有个问题:
http://ruby-china.org/topics/9983
评论里的 6 楼我想点 like,但是链接是 signin
faye 请求一直 503 了
#1 楼 @sunday35034 问了几个问题回答的人都比较少
最后还是用 spreadsheet 了
国内我知道京东云擎是支持 rails 的空间,不过不像 heroku 一样可以执行 heroku run。不过小的应用可以了
再次证明两(hehe)档制的优势
刚开始上手 rails 的时候就直接用的这个模板,回顾一下 1.把静态的 js 和 css 拿出来,放到 application.js 和 application.css 里去 2.找每个页面共性的东西写到 application.html.erb 里 3.然后就要碰到第一个不知道怎么办的地方了,登录的 layout 不能用 application,网上一查就知道
润和园么。。