simple_form @user do |f| f.input f.input ... render 'parital', :locals => { :f => f } end
render 'parital', :locals => { :f => f }
传递不了 f
render 'parital', :f => f 可以吗?
render 'parital', :f => f
#2 楼 @zhangyuan 居然可以 0.0...这样传有什么不同吗
render :partial =>'parital', :locals => { :f => f } 应该也可以。是你的调用方式写错了,建议看看它的实现
render :partial =>'parital', :locals => { :f => f }
ps: partial 这个词貌似写错了