In my controller I have:
在我的控制器中,我有:
def sedomain
country_codes = %w[ dk se com net org info ]
@domains = { }
country_codes.each do |cc|
@domains[cc.to_sym] = { :navn => ".#{cc}" }
end
render :layout => 'page'
end
def seIn my controller I have:
在我的控制器中,我有:
def sedomain
country_codes = %w[ dk se com net org info ]
@domains = { }
country_codes.each do |cc|
@domains[cc.to_sym] = { :navn => ".#{cc}" }
end
render :layout => 'page'
end
def se