Rendering partial with locals in Haml?

后端 未结 2 1954
南旧
南旧 2020-12-13 07:07

I am learning Haml.

My view files are like:

show.html.haml:

.content
  = render \'meeting_info\', :locals => { :info => @info }
         


        
2条回答
  •  一个人的身影
    2020-12-13 07:18

    You would use the :locals option if you're calling render from a controller. When calling render from a view, you would simply do this:

    = render 'meeting_info', :info => @info
    

提交回复
热议问题