2
“ render:nothing => true”是否返回空的纯文本文件?
我在Rails 2.3.3上,我需要建立一个链接来发送发布请求。 我有一个看起来像这样的人: = link_to('Resend Email', {:controller => 'account', :action => 'resend_confirm_email'}, {:method => :post} ) 这使得链接上具有适当的JavaScript行为: <a href="/account/resend_confirm_email" onclick="var f = document.createElement('form'); f.style.display = 'none'; this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; var s = document.createElement('input'); s.setAttribute('type', 'hidden'); s.setAttribute('name', 'authenticity_token'); s.setAttribute('value', 'EL9GYgLL6kdT/eIAzBritmB2OVZEXGRytPv3lcCdGhs='); f.appendChild(s); f.submit(); return false;">Resend Email</a>' 我的控制器动作正常,并设置为不呈现任何内容: respond_to …
116
ruby-on-rails
rest
link-to