[ruby-on-rails] “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 do |format|
  format.all { render :nothing => true, :status => 200 }
end

하지만 링크를 클릭하면 브라우저가 “resend_confirm_email”이라는 빈 텍스트 파일을 다운로드합니다.

무엇을 제공합니까?



답변

업데이트 : 이것은 레거시 Rails 버전에 대한 오래된 답변입니다. Rails 4+의 경우 아래 William Denniss의 게시물을 참조하십시오.

응답의 콘텐츠 유형이 올바르지 않거나 브라우저에서 올바르게 해석되지 않는 것 같습니다. http 헤더를 다시 확인하여 응답 내용 유형을 확인하십시오.

이외의 text/html경우 다음과 같이 콘텐츠 유형을 수동으로 설정할 수 있습니다.

render :nothing => true, :status => 200, :content_type => 'text/html'


답변

Rails 4부터는 head이제 render :nothing. 1

head :ok, content_type: "text/html"

# or (equivalent)

head 200, content_type: "text/html"

보다 선호된다

render nothing: true, status: :ok, content_type: "text/html"

# or (equivalent)

render nothing: true, status: 200, content_type: "text/html"

그들은 기술적으로 동일합니다. cURL을 사용하는 것에 대한 응답을 보면 다음이 표시됩니다.

HTTP/1.1 200 OK
Connection: close
Date: Wed, 1 Oct 2014 05:25:00 GMT
Transfer-Encoding: chunked
Content-Type: text/html; charset=utf-8
X-Runtime: 0.014297
Set-Cookie: _blog_session=...snip...; path=/; HttpOnly
Cache-Control: no-cache

그러나 호출 headrender :nothing이제 HTTP 헤더 만 생성한다는 것이 명시 적이기 때문에 호출에 대한보다 분명한 대안을 제공합니다 .


  1. http://guides.rubyonrails.org/layouts_and_rendering.html#using-head-to-build-header-only-responses

답변