3
我試圖讓用戶在未登錄的情況下提交預訂請求。提交後,未提示用戶提示登錄或註冊。註冊後,我想要提交表單並將(新註冊的)用戶帶到結帳頁面。設計登錄後提交表單
商店位置保持最後一頁在登錄後返回用戶。我需要通過提交形式和它們放置到結帳頁面上找出如何繼續他們的預期路徑在用戶註冊後/跡象。
def store_location
#stores the last url. Used for post-login redirects to what the user was trying to do last.
if (!request.fullpath.match("https://stackoverflow.com/users/") && !request.xhr?) # don't store ajax calls
session[:previous_url] = request.fullpath
end
end
你的做法是正確的,但我得到這個錯誤: 'NameError在設計:: SessionsController#創建 未初始化的常量的預訂:: CreateBooking' –