Ben Rails 2.3.3'teyim ve gönderi isteği gönderen bir bağlantı yapmam gerekiyor.
Şuna benzeyen bir tane var:
= link_to('Resend Email',
{:controller => 'account', :action => 'resend_confirm_email'},
{:method => :post} )
Bu, bağlantıdaki uygun JavaScript davranışını sağlar:
<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>'
Denetleyici eylemim çalışıyor ve hiçbir şey göstermeyecek şekilde ayarlandı:
respond_to do |format|
format.all { render :nothing => true, :status => 200 }
end
Ancak bağlantıyı tıkladığımda tarayıcım "resend_confirm_email" adlı boş bir metin dosyası indiriyor.
Ne oluyor?