广州葆元健康生物科技有限公司


Ruby rails 页面跳转(render和redirect_to)

网络编程 Ruby rails 页面跳转(render和redirect_to) 06-22
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的用法就是了。

Ruby 取得指定月日期数的方法
代码如下:require'date'day=Date.new(2008,2,-1)end_of_month=day.strftime('%d').to_iyear_and_month=day.strftime('%Y%m')fortodayin1..end_of_monthdopsprintf('%s%02d',year_and_month,today)end其他

Ruby 中关于日文转UTF-8及半角全角转换的技巧
1.日文转UTF-8Iconv.new('cp932','utf-8')与Iconv.new('shift_jis','utf-8')的区别Iconv.new('shift_jis','utf-8')不支持以下的格式:?№001-18XXXXXXX而只能把字符窜中的№换成No.才

Ruby 之 class 中的 private、 protected、public
Privateprivate函数只能在本类和子类的上下文中调用,且只能通过self访问。这个意思就是:private函数,只能在本对象内部访问到。对象实例变量(@)的访问


编辑:广州葆元健康生物科技有限公司

标签:模板,日文,全角,代码,函数