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 …
116
ruby-on-rails
rest
link-to