{"count_plan"=>#BigDecimal:a639408,'0.2E1',9(18)}
myobj.to_json
.h = {b: BigDecimal.new('12.34'), s: 'string'}
puts h.to_json
child = { b: BigDecimal.new('12.34'), s: 'string' }.to_json
main = { main: 'testing' }.merge!( child: child )
puts main
# {:main=>"testing", :child=>"{\"b\":\"0.1234E2\",\"s\":\"string\"}"}
menu_products = JSON.parse( MenuMealsDish
.joins( menu_products: [ :children_category, :product ] )
.select( 'menu_products.count_fact',
'products.code AS product_code',
'children_categories.code AS category_code' )
.where( menu_requirement_id: menu_requirement_id )
.where( 'menu_products.count_fact != ? ', 0 )
.to_json, symbolize_names: true )
dishes = MenuMealsDish
.joins( menu_products: [ :children_category, :product ] )
.select( 'menu_products.count_fact',
'products.code AS product_code',
'children_categories.code AS category_code' )
.where( menu_requirement_id: menu_requirement_id )
.where( 'menu_products.count_fact != ? ', 0 )
.to_a
render json: {menu_products: dishes}
myitem = MyTable.first # читай комментарий ниже
attr = myitem.as_json # получить Hash
attr['my_field'] = { foo: 'bar' } # работай с Hash ...
p attr
render json: {item: attr}
MyTable.all.first
- это попросить ВСЕ записи, а использовать только ПЕРВУЮ!attr = HashWithIndifferentAccess.new(myitem.as_json)
hash = HashWithIndifferentAccess.new({a: 1}) # { "a" => 1 }
<code lang="ruby">
</code>
arr_hash = HashWithIndifferentAccess.new([{a: 1}]) # { }
[ { "id" => 2 }, { "id" => 3 }, { "id" => 1 } ].map { |v| HashWithIndifferentAccess.new( v ) }.each{ | v | p v[:id] }
# 2
# 3
# 1