构建在线社交图钉板与餐厅菜单生成器
1. Rails 4.2 升级提示
在 Rails 4.2 中, active_support/core_ext/object/to_json 这个引入路径已被弃用,应使用 active_support/core_ext/object/json 替代。例如,Sunspot Rails 会给出如下弃用警告:
DEPRECATION WARNING: You have required `active_support/core_ext/
object/to_json`. This file will be removed in Rails 4.2. You should require
`active_support/core_ext/object/json` instead. (called from <top (required)>
at /home/rwub/rails4-book/book/6294OS_Chapter_03/project-3/config/
application.rb:7)
解决方法是在 sunspot_rails/lib/sunspot_rails.rb 中修改为:
require 'active_support/core_ext/object/json'
超级会员免费看
订阅专栏 解锁全文
3

被折叠的 条评论
为什么被折叠?



