125

我在 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”的空文本文件。

是什么赋予了?

4

2 回答 2

279

从 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

但是,调用head提供了一种更明显的调用替代方法,render :nothing因为现在明确表示您只生成 HTTP 标头。


  1. http://guides.rubyonrails.org/layouts_and_rendering.html#using-head-to-build-header-only-responses
于 2013-08-05T13:46:58.147 回答
147

更新:这是旧 Rails 版本的旧答案。对于 Rails 4+,请参阅下面 William Denniss 的帖子。

在我看来,响应的内容类型不正确,或者在您的浏览器中没有正确解释。仔细检查您的 http 标头以查看响应的内容类型。

如果它不是text/html,您可以尝试手动设置内容类型,如下所示:

render :nothing => true, :status => 200, :content_type => 'text/html'
于 2011-01-08T04:26:37.580 回答