我正在运行rails 5.0.2并一直跟随https://gorails.com/episodes/liking-posts?autoplay=1一起在我的产品展示页面上添加一个类似按钮。
我不能为我的生活解决为什么我一直在犯错误
没有路线匹配[GET]“/ products / 7199 / like”
根据教程,我有一个类似的routes.rb,我在测试期间只添加了[:create,:destroy]来尝试获取post请求。我甚至没有会员做过测试。
Rails.application.routes.draw do
root to: "pages#home"
devise_for :users,
:path => '',
:path_names => {:sign_in => 'login', :sign_out => 'logout', :edit => 'profile'},
:controllers => {:omniauth_callbacks => 'omniauth_callbacks',
:registrations => 'registrations'
}
resources :users, only: [:show]
resources :vendors, only: [:show]
resources :brands, only: [:show]
resources :products do
resource :like, only: [:create,:destroy], module: :products
member do
get :toggle_status
end
end
resources :pages
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
我的likes.rb模型是
class Like < ActiveRecord::Base
belongs_to :user
belongs_to :product
end
我的likes_controller嵌套在产品中。我添加了@ product.id,因为我使用的是friendly_id,教程使用了产品ID。
class Products::LikesController < ApplicationController
respond_to :html, :js
before_action :authenticate_user!
before_action :set_product
def create
@product.likes.where(user_id: current_user.id).create!
respond_to do |format|
format.html { redirect_to @product.id}
format.js
end
end
def destroy
@product.likes.where(user_id: current_user.id).destroy_all
respond_to do |format|
format.html { redirect_to @product.id }
format.js
end
end
private
def set_product
@product = Product.find(params[:product_id])
end
end
我的按钮在我的产品展示页面上(我确实将它们放在部分(_likes.html.erb)中,但是将它们移回测试中)
<div id="product_<%= @product.id %>_likes" class="col-md-6">
<% if user_signed_in? && current_user.likes?(@product) %>
<%= link_to 'Unlike', product_like_path(@product.id), method: :delete, remote: true, class: 'btn btn-primary btn-lg btn-block' %>
<%- else -%>
<%= link_to 'Like', product_like_path(@product.id), method: :post, remote: true, class: 'btn btn-primary btn-lg btn-block' %>
<% end %>
</div>
并在views / products / likes中创建了create.js.erb和destroy.js.erb,如下所示
创建
$('#product_<%= @product.id %>_likes').html("<%=j render partial: 'products/likes', locals: {product: @product} %>");
破坏
$('#product_<%= @product.id %>_likes').html("<%=j render partial: 'products/likes', locals: {product: @product} %>");
最初我认为我有一个turbolinks问题(我仍然可以),但注意到我没有点击Post,尽管我的代码。这是耙子
ake routes | grep like
product_like DELETE /products/:product_id/like(.:format) products/likes#destroy
POST /products/:product_id/like(.:format) products/likes#create
我的application.js文件:
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file. JavaScript code in this file should be added after the last require_* statement.
// jquery_ujs allows us to use 'data-remote',
// 'data-type', and 'data-method' attributes
//
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//= require jquery
//= require bootstrap-sprockets
//= require jquery_ujs
//= require jquery-ui
//= require jquery.turbolinks
//= require html.sortable
//= require turbolinks
//= require turbolinks-compatibility
//= require_tree .
$.turbo.use('turbolinks:load', 'turbolinks:request-start');
var resetForms = function () {
// this depends on your use
// this is for foundation 6's abide
$('form').each(function () {
$(this).foundation('destroy');
});
};
document.addEventListener("turbolinks:before-cache", function() {
resetForms();
});
我的javascript文件夹中有以下依赖项文件
application.coffee
cable.js
search.js
turbolinks-compatibility.coffee
search.coffee
loading.js
favorite_products.coffee
您可以给我任何指导来解决这个问题。
答案 0 :(得分:0)
经过大量的拔毛之后,我发现最初的开发人员添加了一个application.coffee文件,似乎只处理社交共享方面。
我删除了有问题的文件。其他一切都奏效了。包括turbolinks问题。因此,基本上就是在产品模型中添加类似系统所需的内容。