貌似 ruby-china 的 seo 做的不错,刚发的贴打几个关键字 google 下就出来了
刚毕业完全没时间玩啊。 以前在学校 war3,sc2,wow 都玩…
@jacksv123 你可以后端先写个接受查询的接口,然后前端调用这个接口
多希望有本经验书吃了多长几年经验
#57 这个搞笑了。^_^
@geekontheway mac 下 QQ 最近更新很频繁,虽然功能还是很简便
@ruchee 加群基本都是属于瞎扯淡。。
@xoxoj 就是创建表顺便给 key 那个字段加个索引,idx_key 是这个索引的名字,叫什么都可以
ids = @user.favorite_topic_ids.join(",") Topic.where("id in (?)",ids).order("field(id #{ids})") 不知道这样可以吗
Learn Ruby The Hard Way 这个代码看起来也不少
感觉有点像赛车宣传。。
老大说的算,基本为 0。。
recaptcha 不自己定制显示样式的话超简单,controller view 里面各只需要一句代码,就是 google 那个图片看起来有点反人类。。
@bony 舍普琴科 卡卡相继离开米兰也曾经让我不再相信爱情了。。
joins("left join messages on users_messages.message_id = messages.id").where("users_messages.id=20")
貌似你应该把这 2 个表关联起来,关联之后就可以 joins(:message) 了
@ruohanc 可以去 railties 这个 gem 包里面去生成 tags 文件,通过能使用 ctags 的编辑器 (vim sublime text2 textmate 等都支持) 到对应的类下通过快捷键查找, 不过好像不能凭空就去找到源文件定义
@azhao 米兰今年联赛冠军估计没没戏了,需要尤文连续犯错
@ery 恩,有道理,本意是有几个 controller 需要调用这个,写到 application_controller 里又感觉没必要,索性这样写到 helper 里面,的确可读性大大降低了,以后别人维护也不好维护
@edokeh 用 class_eval 是为了批量生成这些方法 以便调用 const_get 只能在继承的类中使用,rails 除非是自定义的 module,不然在 controller 和 helper 里面都会报没有初始化常量的错误
貌似用方法的确比用实例变量简单点,写到 helper 里面也能实现
%w(BASIC TRADE LATEST LIKE GENE).each do |i| class_eval(%Q{ def #{i.downcase}; Ex::User::#{i}; end }) end
@ruohanc form_for 的 option 就在 api form_for 方法下面
:url - The URL the form is submitted to. It takes the same fields you pass to url_for or link_to. In particular you may pass here a named route directly as well. Defaults to the current action.
:namespace - A namespace for your form to ensure uniqueness of id attributes on form elements. The namespace attribute will be prefixed with underscore on the generated HTML id.
:html - Optional HTML attributes for the form tag. 后面举了很多例子
才发现原来是 Dave Thomas 大神友情奉献 语法看起来比 awk 友善很多
让我想起了 37signals 好像刚开始只有 dhh 一个程序员
@inetufo 自定义快捷键,这个的快捷键比较简单。 max 下: { "keys": ["super+e"], "command": "reindent" }
这么快就 50 啦 +1
#10 @yetone DEPRECATION WARNING: ActiveSupport::Memoizable is deprecated and will be removed in future releases,simply use Ruby memoization pattern instead. (called from at /home/wwwroot/ruby-china/config/application.rb:13) 这个错误是 rails 3.2 移除了 ActiveSupport::Memoizable,可以 pass 掉。 你 rake 的时候 --trace 具体看下是哪出错了,目前给的信息判断不了是哪出错了