0
我試圖創建一個對象,並把布爾爲true,並在任何情況下 日誌顯示錯誤後重定向。如果布爾值爲真,Rails如何控制器重定向?
有人知道如何?
class BrandsController < ApplicationController
def new
@brand = current_user.build_brand(params[:brand])
end
def create
@brand = current_user.build_brand(params[:brand])
if @brand.save
redirect_to "#{new_user_path}?branded=#{@current_user.branded[1]}"
flash[:success] = "thank's".html_safe
end
end
end
你的錯誤是什麼? –
'@ brand.save'將是一個布爾值,除非你已經做了一些產生異常的東西。 – tadman