Ruby on Rails 3.1:“渲染”错误来自 RailsCasts 的 javascrtip (AJAX)(使用 AJAX 进行搜索、排序、分页)

发布于 2024-12-09 20:19:59 字数 685 浏览 1 评论 0原文

我的代码来自: RailsCasts:使用 AJAX 进行搜索、排序、分页

我遇到此错误:

undefined method render for #<#<Class:0x9e54e54>:0xa860f24>
(in /var/www/final/.../app/assets/javascripts/application.js.erb)

我的 application.js.erb:

$(function() {
 $("#zoznam_render th a, #zoznam_renders .pagination a").live("click", function() {
    $("#zoznam_render").html("**<%=j render 'zoznam' %>**");
    return false;
  }); });

在 index.html.erb 中渲染 'zoznam'(_zoznam.html.erb) 可以。 “zoznam/index”是我的带有自定义 SQL 选择的产品列表。一切都好,但“大胆”的剧本不好。 '

My code is from: RailsCasts: Search, Sort, Paginate with AJAX

I have this error:

undefined method render for #<#<Class:0x9e54e54>:0xa860f24>
(in /var/www/final/.../app/assets/javascripts/application.js.erb)

My application.js.erb:

$(function() {
 $("#zoznam_render th a, #zoznam_renders .pagination a").live("click", function() {
    $("#zoznam_render").html("**<%=j render 'zoznam' %>**");
    return false;
  }); });

In index.html.erb render 'zoznam'(_zoznam.html.erb) is OK. "zoznam/index" is list of my products with custom sql select. It´s all OK but "bold" script is not good. '

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

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

发布评论

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

评论(1

慈悲佛祖 2024-12-16 20:19:59

来自TheCompWiz
原始论坛
好吧...我想我找到了 Rails 3.1 的修复程序。诀窍是避免使用资产。您需要呈现页面。这可能看起来很黑客……我同意……但它确实有效。这可能在未来可以得到更好的完善。

您需要做的是在路由文件中的产品“资源”之前添加一个条目,如下所示:

匹配“/products/index.js”, :controller =>; '产品', :action =>
'索引',:格式=> :js

并照常进行。本质上,它的作用是让 Rails 跳过使用全新的资源管理器系统……并返回到老式的渲染设置。这可能是一件好事,因为 index.js 是根据请求渲染的,不会与其他 javascript 连接在一起,也不会缩小。

//也许是个好答案...

from TheCompWiz:
original forum
Ok... I think I found a fix for rails 3.1. The trick is to keep from using assets. You need the page to be rendered. This may seem hack-ish... I agree... but it does work. This can probably be better refined in the future.

What you need to do, is add an entry in the routes file before the "resources" for products like so:

match "/products/index.js", :controller => 'products', :action =>
'index', :format => :js

and proceed as normal. What this does in essence is get Rails to skip using the brand-new asset manager system... and go back to the old-fashioned rendering setup. This is probably a good thing as the index.js is rendered per-request and won't be concat'd together with the other javascript and not minified.

//maybe good answer...

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