0
這是我簡單的代碼軌渲染部分不工作
<%= render :partial => '/manage/regions/get_by_country', :locals => {:country_id => @last_search.country_id} %>
的@ last_search.country_id已值(選中)
,但同時呈現的控制似乎COUNTRY_ID爲空或空
我不能理解的是,我在另一個控件中使用相同的語法,並在我們預期的工作
我也嘗試添加硬編碼country_id
<%@id = 118%>
<%= render :partial => 'manage/regions/get_by_country', :locals => {:country_id => @id} %>
<%end%>
,而不是工作 控制渲染,但COUNTRY_ID是空
您的代碼應該工作。但試試這個:'render'manage/regions/get_by_country',::country_id => @ last_search.country_id' – user2503775
發佈** manage/regions/get_by_country **頁面代碼 –