Getting rid of DEPRECATION WARNING: env is deprecated and will be removed from Rails 5.0.

强颜欢笑 提交于 2019-12-22 06:53:23

问题


While migrating to Rails 5.0.0.beta1 I discovered lots of deprecation warning :

DEPRECATION WARNING: env is deprecated and will be removed from Rails 5.0. (called from XXX at YYY)

I've tried to get rid of that and try to find an alternative but found nothing in the actionpack changelog.

Any ideas ?


回答1:


ok, so it seems that env method has been deprecated in ActionPack by this commit.

so from now on we should user request.env instead of env in our controllers and helpers.



来源:https://stackoverflow.com/questions/34470585/getting-rid-of-deprecation-warning-env-is-deprecated-and-will-be-removed-from-r

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!