我試圖讓我的Rails應用程序忽略來自比另一個控制器動作以外的任何HTTP請求。舉例來說,假設我有我的控制器動作:忽略來自瀏覽器在Rails的HTTP請求4
class ChargesController < ApplicationController
before_action :set_charge, only: [:show, :edit, :update, :destroy]
def show
redirect_to edit_charge_path(@charge)
end
def edit
end
...
end
我試圖讓行爲控制器接受來自show
的redirect
,但會重定向誰在瀏覽器中輸入一些URL像http:\\www.mysite.com\charges\2\edit
用戶地址窗口到其他位置(如'\'
)
重定向簡單地做另一HTTP請求,在這種情況下,該編輯操作。 – Leito