Ruby rails 頁面跳轉(render和redirect_to)

來源:互聯網
上載者:User

Ruby代碼 複製代碼 代碼如下:if @user.update_attributes(:password => params[:user][:password])
flash[:notice] = '密碼修改完成'
redirect_to :action => 'index'
else
redirect_to :action => 'change_pass', :id => @user
end

後來隨手改了下第5行,把redirect_to改為render,居然就OK了。網上找了下才發現redirect_to和render還是有很多區別的,我以前居然一點都沒有注意,汗..

redirect_to實現的是action方法的跳轉,向瀏覽器發起一個新的請求,具體使用方法如下: 複製代碼 代碼如下:redirect_to :action => 'edit', :id => 7
redirect_to "http://wiisola.javaeye.com/"
redirect_to "/images/1.jpg"
redirect_to :back

其中第4行是回到上一次訪問的頁面。
render可以翻譯成"渲染",也就是說,render僅僅渲染了一個新的模板,而沒有執行相應的action。render的用法如下: 複製代碼 代碼如下:render(:text => string)
render(:inline => string, [:type => "rhtml"|"rxml"])
render(:action => action_name)
render(:file => path, [:use_full_path => true|false])
render(:template => name)
render(:partial => name)
render(:nothing=>true)
render()

第1行:直接渲染出文本
第2行:把傳入的string渲染成模板(rhtml或者rxml)
第3行:直接調用某個action的模板,相當於forward到一個view
第4行:使用某個模板檔案render, 當use_full_path參數為true時可以傳入相對路徑
第5行:使用模板名render,e.x.: render(:template => "blog/short_list")
第6行:以局部模板渲染
第7行:什麼也不輸出,包括layout
第8行:預設的的render, 相當於render(:action => self)
補上一個手動render的例子:
Ruby代碼 複製代碼 代碼如下:def search
@results =Search.find(params[:query])
case @results
when 0 then render :action=> "no_results"
when 1 then render :action=> "show"
when 2..10 then render :action=> "show_many"
end
end
def search
@results =Search.find(params[:query])
case @results
when 0 then render :action=> "no_results"
when 1 then render :action=> "show"
when 2..10 then render :action=> "show_many"
end
end

但是我自己的問題仍然沒有解決,為什麼用render渲染一個模板能夠顯示錯誤資訊,但用redirect_to重新請求就沒有呢?也許看源碼能夠解決吧,可惜看不懂,汗..總之以後記住render和redirect_to的用法就是了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.