English 中文(简体)
JSON 在 Chrome 中打破回扣, 在 IE 中重新装入按钮( 以裸体数据显示)
原标题:JSON breaking back button in Chrome, Reload Button in IE (Showing as naked data)

https://stackoverflow.com/ questions/2037295/getjson-back-back-button-showing-json-return-data-not-the-page”$.getJSon背按钮显示JSON返回数据,而不是页面 没有帮助,以及http://code.google.com/p/chromium/issues/detail?id=108425 )

在我看来,它似乎喜欢在浏览器的侧面错误解释, 因为它隐藏的东西它真的不应该( 回复信头), 它隐藏的东西在一个错误的 URL (因为 JSON 请求没有击中同一个 URL) 之下( 因为 JSON 请求没有击中同一个 URL ) 。

最佳回答

问题其实是铁路:铬和IE都要求最后的答复没有具体格式,所以铁路只是采取了第一个回应区块,恰好在我的例子中是json。把html区块放在json区块前面解决了这个问题。

respond_to do |format|
  format.html { ... } //important because the request comes with no specific format
  format.json { ... }
end
问题回答

我对铬也有同样的问题。 我的控制器方法确实有 format.html

respond_to do |format|
  format.html
  format.js
end

似乎染色体会缓存结果, 所以我能够解决这个问题, 在我的 ajax 请求中添加一个数据输入, 就像这样:

$.ajax({
   url:  /restful/path ,
   data: { format:  js  }, // This line here
   dataType:  json 
});

或您可以通过将格式附加在请求结尾处的方式通过格式,只要确定您在路径中选择了 (.:format) 选项

$.ajax({
   url:  /restful/path.js ,
   dataType:  json 
});

希望这能帮到某人





相关问题
rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

activerecord has_many :through find with one sql call

I have a these 3 models: class User < ActiveRecord::Base has_many :permissions, :dependent => :destroy has_many :roles, :through => :permissions end class Permission < ActiveRecord::...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签