Rails Uncaught SyntaxError:意外的令牌<

时间:2018-05-28 02:44:24

标签: ruby-on-rails ajax ruby-on-rails-5

我通过js在部分渲染上遇到Uncaught SyntaxError: Unexpected token <错误。部分只包含一个表。

正在调用partial,但浏览器控制台中的错误消息显示表标记的第一个<为意外令牌。

<table class='table table-sm'> # <- this line errors
  <thead>
    <tr>
      <th>Part #</th>
      <th>Description</th>
      <th>Qty</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>SCS-#10-24X.375-BLK</td>
      <td>Countersunk screw, #10-24 X .375, Black oxide</td>
      <td>2.0</td>
    </tr>
  </tbody>
</table>

_check_it.html.haml

- if @part.part_structures == 0
  No components
- else
  %table.table.table-sm
    %thead
      %tr
        %th Part #
        %th Description
        %th Qty
    %tbody
      - @part.part_structures.each do |ps|
        %tr
        %td= ps.component.partNo
        %td= ps.component.description
        %td= ps.qty

check_it.js.erb

$("#that_one").replace("<%= j render(partial: 'check_it') %>");

parts_controller.rb

def check_it
  respond_to do |format|
    format.js {render partial: 'check_it', :content_type => 'text/html', part: @part}
  end
end

为什么在JS控制台中出现表标记开头的部分错误?

1 个答案:

答案 0 :(得分:2)

如果check_it.js.erb文件位于同一文件夹中,则无需从控制器进行渲染。只要方法名称相同,它也会自动执行。

# parts_controller.rb
def check_it
  #@part is already class instance variable. no need also
  respond_to do |format|
    format.js{}
  end
end

# parts/check_it.js.erb
console.log("<%= @part %>")
$("#that_one").replace("<%= j render(partial: 'check_it') %>");