我的控制器中有以下代码:
struc = {'en' => 'english', 'es' => 'espaniol', 'de' => 'germany', 'fr' => 'french', 'it' => 'italy'}
struc.each_pair do |key, value|
@key=key
@value=value
end
在我的 application.html.erb 我有以下
<select name="Language" onchange="location=this.options[this.selectedIndex].value;">
<option value="/<% @key %>/<%= @rem %>"><%= @value %></option>
</select>
现在我怎样才能让'@key'和'@value'的值递归显示在(application.html.erb)上?
另外我怎样才能改变它的样式,即使值看起来更小,很好地藏起来?
提前致谢