为什么正确的“respond_to”是格式没有被调用?
我有一个有点奇怪的问题。确实太奇怪了,无法打字,但就这样。基本上我有一个控制器拒绝使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是您的 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?