1

我想将服务对象添加到我的控制器中。然而,销毁操作似乎无法正常工作 - 基本上它不会删除任何内容,只是重定向到没有 Flash 消息的页面。

user_stock_destroyer.rb

class UserStocksDestroyer
  def initialize(current_user, params, flash)
    @current_user = current_user
    @params = params[:id]
    @flash = flash
  end

  def call
    stock = Stock.find(params)
    @user_stock = UserStock.where(user_id: current_user.id, stock_id: stock.id).first
    @user_stock.destroy!
    flash[:notice] = 'Stock successfully removed'
  end

  private

  attr_reader :current_user, :params, :flash
end

user_stocks_controller.rb

class UserStocksController < ApplicationController
  def destroy
    UserStocksDestroyer.new(current_user, params, flash)
    redirect_to my_portfolio_path
  end
end
4

1 回答 1

5

您正在创建对象,但没有调用call完成工作的方法

def destroy
  UserStocksDestroyer.new(current_user, params, flash).call
  redirect_to my_portfolio_path
end
于 2019-05-15T10:43:26.950 回答