首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >ActionView ::MissingTemplate::Missing template - Java脚本部分

ActionView ::MissingTemplate::Missing template - Java脚本部分
EN

Stack Overflow用户
提问于 2018-09-18 06:44:38
回答 2查看 803关注 0票数 2

我想使用本教程将AJAX搜索字段添加到我的应用程序中:http://www.rymcmahon.com/articles/11

除了search JS字段之外,其他一切都运行得很好。它根本不起作用。我的终端控制台中的错误:

jbuilder ActionView::MissingTemplate (缺少模板产品/搜索结果、应用程序/搜索结果以及{:locale=>:en,:formats=>:js,:html,:variants=>[],:handlers=>:raw,:erb,:html,:builder,:ruby,:jbuilder,:haml

Chrome中的JS控制台

rails-ujs.self-8944eaf3f9a2615ce7c830a810ed630e296633063af8bb7441d5702fbe3ea597.js?body=1:189 GET http://localhost:3000/products?utf8=%E2%9C%93&search=PKP&commit=search 500 (内部服务器错误)

我有turbolinks v5和rails 5.1.6。

gem 'turbolinks','~> 5‘

gem 'jquery-rails‘

gem 'rails','~> 5.1.6‘

就像找不到这个文件一样:

/products/_search-results.js.rb

$("#product_table").hide();
$("#search-results").html("<%= escape_javascript(render :partial =>'results') %>");

我应该为此添加一些路由吗?谢谢你的建议。

以防我要添加其他文件:

我的index方法:

class ProductsController < ApplicationController
  def index
    if params[:search]
      @search_results_products = Product.options_sortable(params)
            respond_to do |format|
                format.js {render "search-results"}
                format.html
            end
        else
            @products = Product.all.paginate(:page =>params[:page], :per_page => 20)
        end
  end.....

index.html.haml:

.container-fluid
    %h2.center
        =link_to "Create New Product", new_product_path

    =render 'search_products'

    %br
    %h1.center List of all the Products
    #product-table
        =render 'table_products'
    #search-results
    .col-lg-2.offset-md-5
        =will_paginate(@product)

我会把其他的文件放在这里。

_table.products:

.col-md-8.offset-md-2
    %table.frame
        %thread
            %tr.h2
              %th
                =link_to "Name", sort: "product_name"
                %th
                  =link_to "Description", sort: "description"
                %th Order Name
                %th options
        %tbody
            -@products.each do |product|
                %tr
                  %th.h4
                    =product.product_name
                    %th
                      =product.description
                    %th
                      =product.order.name
                    -if product.order.user == current_user
                      %th
                        =link_to 'edit', edit_product_path(product)
                        ||
                        =link_to 'delete', product_path(product), 
                                           remote: true,
                                           method: :delete,
                                    data: { confirm: 'Are you sure?'}
                    -else
                        %th
                          no permission

_results.html.haml

.col-md-8.offset-md-2
    %table.frame
        %thread
          %tr.h2
            %th
              =link_to "Name", sort: "product_name"
            %th
              =link_to "Description", sort: "description"
            %th Order Name
            %th options
        %tbody
            -@search_results_products.each do |product|
              %tr
                %th.h4
                  =product.product_name
                %th
                  =product.description
                %th
                  =product.order.name
                -if product.order.user == current_user
                  %th
                    =link_to 'edit', edit_product_path(product)
                    ||
                    =link_to 'delete', product_path(product), 
                                remote: true,
                                method: :delete,
                               data: { confirm: 'Are you sure?'}
                    -else
                      %th
                        no permission

和_search_products.html.haml

.col-lg-4.offset-md-4
  =form_tag(products_path, :method => "get", remote: true) do
    .form-group.form-control-md
      =text_field_tag :search, params[:search], placeholder: 'Enter search text'
      =submit_tag 'search', class: "btn"
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2018-09-18 07:53:58

问题出在JS文件的错误类型中。应该是_search-results.js.erb而不是_search-results.js.rb.

票数 0
EN

Stack Overflow用户

发布于 2018-09-18 07:01:19

错误显示无法找到/products/search-results.js.rb,这是正确的。您的文件名为/products/_search-results.js.rb

当您在控制器中调用render 'search-results'时,它将查找文件名search-results;当您调用partial =>'results'时,它将查找文件名_results

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/52376599

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档