我正在尝试将社交共享添加到Rails项目中,但是我在下面的两行中始终得到此no implicit conversion of nil into String
:
<a href="http://www.facebook.com/sharer/sharer.php?u=<%= CGI::escape(root_url) %>?ref=<%= CGI::escape(@user.referral_code) %>&title=wdyw" class="fb" target="_blank"></a>
<a href="http://twitter.com/share?url=<%= CGI::escape(root_url) %>?ref=<%= CGI::escape(@user.referral_code) %>&text=<%= CGI::escape(twitter_message) %>" class="twit" target="_blank"></a>
我正在使用Ruby版本2.6。不确定错误是什么。