Jestem na Railsach 2.3.3 i muszę utworzyć łącze, które wysyła żądanie postu.
Mam taki, który wygląda tak:
= link_to('Resend Email',
{:controller => 'account', :action => 'resend_confirm_email'},
{:method => :post} )
Co sprawia, że łącze JavaScript działa prawidłowo:
<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>'
Moja akcja kontrolera działa i nic nie jest ustawione:
respond_to do |format|
format.all { render :nothing => true, :status => 200 }
end
Ale kiedy klikam łącze, moja przeglądarka pobiera pusty plik tekstowy o nazwie „resend_confirm_email”.
Co daje?