Ruby rails 页面跳转(render和redirect_to)

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 

你可能感兴趣的:(String,Ruby,action,Rails,redirect,attributes)