为什么正确的“respond_to”是格式没有被调用?

发布于 2024-08-30 04:24:01 字数 711 浏览 6 评论 0原文

我有一个有点奇怪的问题。确实太奇怪了,无法打字,但就这样。基本上我有一个控制器拒绝使用javascript“respond_to”,除非我将“chart.generate_xml”分配给“respond_to”块之前的变量,如下所示:

  @xml = @chart.generate_xml(@begin_date,@end_date,1.hour)
  respond_to do |format|
    format.html
    format.js{
      render :update do |page|
        page.insert_html :bottom, "chart-div", @xml
        #page.insert_html :bottom, "chart-div", @chart.generate_xml(@begin_date,@end_date,1.hour)
      end
    }

如果我删除上面的“@xml= …”部分并使用较低的“page.insert”,“format.js”部分不会被调用。如果我尝试使用“request.format = :js”强制使用格式,我会得到以文本形式返回的 javascript。我在该方法调用中没有做任何特别的事情,所以我不确定为什么它会选择不同的响应。

FWIW,触发此控制器操作的方法是使用 JS 来执行此操作,所以我很困惑为什么“format.js”并不总是被调用。想法?

最好的。

I'm having a bit of an odd issue. Really too odd to type out, but here goes. Basically I have a controller that refuses to "respond_to" using javascript unless I assign my "chart.generate_xml" to a variable before the "respond_to" block like so:

  @xml = @chart.generate_xml(@begin_date,@end_date,1.hour)
  respond_to do |format|
    format.html
    format.js{
      render :update do |page|
        page.insert_html :bottom, "chart-div", @xml
        #page.insert_html :bottom, "chart-div", @chart.generate_xml(@begin_date,@end_date,1.hour)
      end
    }

If I remove the upper "@xml= …" portion and go with the lower "page.insert", the "format.js" section doesn't get called. And if I try to force the format with "request.format = :js", I get the javascript returned as text. I'm not doing anything special here in that method call, so I'm not sure why it would choose to respond any differently.

FWIW, the method that triggers this controller action is using JS to do so, so I'm confused as to why "format.js" isn't always getting called. Thoughts?

Best.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昵称有卵用 2024-09-06 04:24:01

这可能是您的 config/routes.rb 文件中的问题,因为这可能会扰乱格式。

你能发布这个文件和curl/wget 结果的标题吗?

It could be an issue in your config/routes.rb file, as this can mess with the format.

Could you post this file and the header of the results from curl/wget?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文