0
在我的客戶索引視圖中,如果我單擊刪除客戶按鈕,則會在我的客戶控制器刪除方法中執行以下操作。Rails控制器上的Modal彈出窗口操作
Customers_controller.rb
類CustomersController < ApplicationController的 。 。
def destroy
if Customerarticle.where(author_id: params[:id]).count > 0
#####I need the logic here to display a modal window on my index page of customers here#####
else
Customer.find(params[:id]).destroy
flash[:success] = "Customer deleted"
# debugger
redirect_to customers_path
end
所以根據我的情況,如果這是真的意味着用戶無法刪除,並顯示在一個模式彈出窗口的客戶索引頁本身上的消息,該如何實現呢?