0

我知道这个问题之前已经被问过很多次了,但是由于我没有经验,我无法使用这些回答来纠正这个问题。我在以前的 Rails 项目中使用过它,但看不到发生了什么变化。我使用 PostgreSQL 而不是 MySQL 开始了一个新项目,现在我使用的是 Rails 3.2.8(原为 3.2.1)。

Firebug 显示:TypeError:aData 未定义于:

var aData = _fnGetObjectDataFn( oSettings.sAjaxDataProp )( json );
for ( var i=0, iLen=aData.length ; i<iLen ; i++ ) 

我认为这可能是由于 Datatables 没有获得正确的 JSON 造成的。下面显示了一个片段,它在 JSONLint 中验证。

[{"code":"STATE 30","created_at":"2012-12-10T06:01:34Z","id":1,"name":"ALBANY     HIGHWAY","rank":null,"state":"WA","updated_at":"2012-12-10T06:01:34Z"},{"code":"ANNE BEADELL HIGHWAY","created_at":"2012-12-10T06:01:34Z","id":2,"name":"ANNE BEADELL HIGHWAY","rank":null,"state":"SA","updated_at":"2012-12-10T06:01:34Z"},...

我看到它不包括 iTotalRecords、iTotalDisplayRecords 和 aaData。这是问题吗?我认为 JSON 选项是由 def as_json 设置的,购买我没有在我的渲染中明确引用它??http get(如 Firebug 中所示)包括 sEcho 但不包括 iTotalRecords。

我的代码基于 RailsCasts #340:

控制器:(见列表动作)。

class HighwaysController < ApplicationController
  respond_to :html, :json

def index
  @highways = Highway.all
  respond_to do |format|
    format.html # index.html.erb
    format.json { render json: @highways }
  end
end

def list
  @highways = Highway.all
  logger.debug "Highway Count: #{@highways.size}"
  respond_to do |format|
    format.html # index.html.erb
    format.json { render json: HighwaysDatatable.new(view_context)}
  end
end

相关的 Ruby 代码:

class HighwaysDatatable
  delegate :params, :h,:link_to,:number_to_currency,to: :@view

  def initialize(view)
    @view = view
  end

  def as_json(options = {})
    {
     sEcho: params[:sEcho].to_i,
     iTotalRecords: Highway.count,
     iTotalDisplayRecords: highways.total_entries,
     aaData: data
    }
  end

  private

  def data
    highways.map do |highway|
      [
       h(highway.id),
       h(highway.name),
       h(highway.state),
       h(highway.code),
       h(highway.rank),
       h(highway.created_at),
       h(highway.updated_at)
      ]
    end
  end

  def highways
    @highways ||= fetch_highways
  end

  def fetch_highways
    ...  (as per RailsCasts code - code wrapped and did not show properly)    
  end
   highways
 end

 def page
   params[:iDisplayStart].to_i/per_page + 1
 end

 def per_page
   params[:iDisplayLength].to_i > 0 ? params[:iDisplayLength].to_i : 10
 end

 def sort_column
  columns = %w[name state code rank]
  columns[params[:iSortCol_0].to_i]
 end

 def sort_direction
    params[:sSortDir_0] == "desc" ? "desc" : "asc"
 end
end

和列表视图:

<% @page_title = "Highways List" %>

  <h2>Highways</h2>

  <%= javascript_tag do %>
    window.highwaysURL = '<%= j highways_url %>';
  <% end %>

  <div id="EditLink">
    <%= link_to "Edit Highway", :controller => :highways, :action => :edit, :id => 1 %>
  </div>  
  <div>
    </br>
      <%= link_to 'Neighbours', '/neighbours/' %>
      <%= link_to 'Localities', '/localities/' %>
    </br>
  </div>
  <div id="tools">

  </div>      


 <table id="highways" class="display" data-source="<%= highways_url(format: "json") %>">
    <thead>
      <tr>
        <th>Id</th>
        <th>Highway</th>
        <th>State</th>
        <th>Code</th>
        <th>Rank</th>
        <th>Created At</th>
        <th>Updated At</th>
      </tr>
    </thead>
    <tbody>

    </tbody>    
 </table>

 <div id=editarea class='result'    ></div> 

我的 gemfile(删除了评论):

source 'https://rubygems.org'

gem 'rails', '3.2.8'
gem 'pg'
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'
end
gem 'libv8', '~> 3.11.8'
gem 'therubyracer', require: 'v8'
gem 'jquery-rails'
gem 'will_paginate'
gem 'debugger'

和用于资产管道的 application.js:

//= require jquery
//= require jquery-ui
//= require jquery.dataTables
//= require TableTools
//= require ZeroClipboard
//= require datatable_highways
//= require datatable_localities
//= require datatable_neighbours
//= require_tree .

这可能很简单,但它一直困扰着我一段时间。感谢期待。

更新

DataTables 调试器小书签指示“列表”视图正在呈现以下内容,其中不包括 DataTables 预期的 json 参数。

http://localhost:3000/highways.json 

我相信它应该是:

http://localhost:3000/highways/list.json.

我不确定这是控制器还是视图问题。

更新

我进行了各种更改,但仍然遇到同样的问题。但我在日志中看到两件事很重要:

输入 localhost:3000/highways/list 显示渲染了 2 个视图。

 Processing by HighwaysController#list as HTML [1m[36mHighway Load (4.8ms)[0m  [1mSELECT "highways".* FROM "highways" ORDER BY name  
 Highway Count: 229
 Rendered highways/list.html.erb within layouts/highways (32.6ms)

然后

Processing by HighwaysController#index as JSON
Parameters: {"sEcho"=>"1", "iColumns"=>"5", "sColumns"=>"", "iDisplayStart"=>"0",...    

第一个是 HTML(通过操作“列表”),第二个是 JSON(通过操作“索引”)。

所以有两个问题:

  1. 第一个渲染有一个相关的数据请求,这会导致来自 DataTables 的“已初始化”警告,并且

  2. 我的 routes.rb 显式匹配语句正在捕获 HTML 以呈现视图,但 JSON 响应(来自对数据行的 AJAX 调用)失败并由资源处理:highways,然后它在控制器

路线.rb

match 'highways/list'=> 'highways#list' 
...
resources :highways

当我只想呈现视图(列标题等)时,如何停止数据请求?
我需要什么路由将 JSON 响应发送到控制器中的“列表”操作?

4

1 回答 1

0

解决。回到最小设置,使用 Ryan Bates #340 代码的 1 个表 - 因此使用索引操作/视图来解决上面的 2 个渲染问题。还是行不通。将 gem 移除到 rweng github 并将 DataTables 文件加载到 ./vendor/assets。现在工作。索引或列表操作可能可以通过显式路由修复,但是当我试图通过列表操作强制它时,我无法通过“缺少模板”。

于 2013-02-28T21:35:10.763 回答