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