欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

render

程序员文章站 2022-07-15 13:47:00
...

 

render :partial => 'articles/article', :locals => { :article => @article }

 

更简单的实现:

 

 

# Render the 'article' partial with an article local variable
render 'articles/article', :article => @article

# Or even better (same as above)
render @article

# And for collections, same as:
# render :partial => 'articles/article', :collection => @articles
render @articles