码迷,mamicode.com
首页 > 编程语言 > 详细

compact过滤数组中的nil

时间:2016-04-25 19:22:20      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

 

http://ruby-doc.org/core-2.2.0/Array.html#method-i-compact

compact → new_aryclick to toggle source

Returns a copy of self with all nil elements removed.

[ "a", nil, "b", nil, "c", nil ].compact
                  #=> [ "a", "b", "c" ]
 render :json => {
      :videos => result_videos.compact.map do |video|
        if video.class == CmsTvIVideo
          if video.video_type == "live"
            {   
              :title => video.title,
              :live_name => video.live_name,
              :live_id=> video.live_id,
              :big_horizontal_image => video.res_img_l,
              :middle_horizontal_image => video.res_img_m,
              :big_vertical_image => video.res_img_s,
              :middle_vertical_image => video.middle_vertical_image,
              :mtype => "live"
            }

 

 

compact过滤数组中的nil

标签:

原文地址:http://www.cnblogs.com/iwangzheng/p/5431835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!