终于拜读完了,条理比较清晰,不过觉得有几点或许可以成为建议。
哈哈,说得一般,求轻拍。
先收藏再看,太晚了,得先睡觉了,明天再拜读
#8 楼 @jimxl 你的意思是,与其静默地照样返回 nil
,还不如直接抛出异常,然后由调用方去处理异常?比如:
# active_support
def save_block_result_to_cache(name, options)
result = instrument(:generate, name, options) do |payload|
yield(name)
end
if result.nil? && !options[:allow_nil] # :allow_nil is true default to be compatible with original behaviour
raise ActiveSupport::Cache::NilError
end
write(name, result, options)
result
end
# 调用者
def read_external_service(params)
# allow_nil: false will force active_support to raise an error when the block return nil
Rails.cache.fetch 'example_cache_key_here', expires_in: 7.days, allow_nil: false do
response = HTTParty.get 'https://example.com/example/request/path'
JSON.parse(response.body)["data"]
end
rescue ActiveSupport::Cache::NilError => e
handler_for_nil_cases(params)
end
#10 楼 @chaucerling try
是 active_support 的实现,不是 Ruby 语言层面的实现。
#7 楼 @hz_qiuyuanxin 哈哈,同问
手动处理下?
$(document).on("ready page:load", function(){
document.title = 'xxxx';
});
不过还是建议先读下 turbolinks 的源码,检查是哪里出现了问题?是不是 document.title = xxx
的方式不支持?
找下 JSON builder? 比如 jbuilder ?
命名空间用 /
表示,你的例子就是:
zh-CN:
activerecord:
attributes:
system/user:
name: "名字"
楼上的是正解!
如果还不清楚,可以看 active record 源码。
楼主可曾知道大明湖畔的 io.js?故事要从很久之前说起。。。
曾经试过在已经装了 newrelic 的项目中再装个 oneapm,结果启动服务器时警告 constant initialized,呃,呵呵。
#9 楼 @cicholgricenchos 我觉得你这个更多是解释了什么叫鸭子类型,因为你认为实现了下标读写器的类型就是数组,但无法说明数组就是方法。按照这种思路,数组的实现也可以是字典(所有的键是按数字从 0 开始递增),再如果我用链表实现,那么我也可以说数组就是链表。鸭子类型的强大之处就在于你可以专注于你可以做些什么事情,而无需过多担心你的对象到底是什么类型。
期待的是
Post.where(id: 1).or(parent_id: 3)
像你这段
Post.where('id = 1').or(Post.where('id = 2'))
我觉得我还不如直接选择用 arel
posts = Post.arel_table
Post.where(posts[:id].eq(1).or(posts[:id].eq(2))
不过用 arel 的缺点就是在条件一多的时候就容易一大堆括号。
/\A[a-zA-Z\.\-0-9][email protected]\Z/
#4 楼 @vincentjiang 你这个是不是少了点?比如 [email protected]
#2 楼 @vincentjiang 什么错误
跟对象序列化有关吧,可能是将数字序列化错了。