Rails 3.1.0 kaminari ActionView::Template::ajax 请求内出错?

发布于 2024-11-05 09:28:46 字数 391 浏览 5 评论 0原文

我正在尝试使用 kaminari 在 ajax 请求中渲染分页链接,但出现服务器错误。我使用 render_to_string 方法将分页链接渲染为字符串,然后通过 json 解析它。我正在使用 Rails 3.1.0。

ActionView::Template::Error (Missing partial kaminari/paginator with {:handlers=>[:erb, :builder, :haml], :formats=>[:json], :locale=>[:en, :en]}. Searched in:

基本上,它在我的所有加载路径中寻找部分文件,但似乎找不到文件,但它们肯定在那里。

有没有人经历过类似的行为并知道可能的原因?

I'm trying to render my pagination links inside an ajax request with kaminari and im getting a server error. I'm using the render_to_string method to render the pagination links to a string then parse it via json. I'm using rails 3.1.0.

ActionView::Template::Error (Missing partial kaminari/paginator with {:handlers=>[:erb, :builder, :haml], :formats=>[:json], :locale=>[:en, :en]}. Searched in:

Basically it's looking for the partials in all my load paths and can't seem to find the files, and they're there for sure.

Has anyone experienced similar behavior and know of a possible reason?

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

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

发布评论

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

评论(2

夜未央樱花落 2024-11-12 09:28:46

我也刚刚遇到了这个。我可以通过将 render_to_string 移动到 respond_to 块来解决这个问题 -

respond_to do |format|
  format.js do
    foo = render_to_string(:partial => 'some_kaminari_view').to_json
    render :js => "$('#foo').html(#{foo})"
  end
end

I just ran into this as well. I was able to work around it by moving render_to_string into a respond_to block -

respond_to do |format|
  format.js do
    foo = render_to_string(:partial => 'some_kaminari_view').to_json
    render :js => "$('#foo').html(#{foo})"
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文