我有这个样式XML:
<Style Name="TextBox2" Type="TEXT">
<Alignment>LEFT</Alignment>
<BorderColor>blue</BorderColor>
<BorderStyle>Solid</BorderStyle>
<BackGroundColor>red</BackGroundColor>
<Options>VISIBLE</Options>
<TextColor>Black</TextColor>
<TextSize>10</TextSize>
<MaxCharacterLength>50</MaxCharacterLength>
我想编写一个函数,使我能够搜索一个名称(例如Checkbox2)并返回相应的子节点名称和值(Alignment = Center,Bordercolor = red等) 我应该使用数据表还是数据集?或任何建议将不胜感激
答案 0 :(得分:0)
尝试这样的方法只获得一个对象
class ApplicationController < ActionController::Base
before_action :set_locale
private
def set_locale
I18n.locale = params[:locale] || I18n.default_locale
end
end