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