ruby - content_for的li>ul>li类型的嵌套
PHP中文网
PHP中文网 2017-04-25 09:01:45
[Ruby讨论组]

在Rails的helper中,我建立这样一个方法:

def ul_li_ul_nest
  fruit = %w(apple watermelon orange pear pineapple)
  info = %w(price place weight)
  content_tag(:ul) do
    fruit.collect do |i|
       content_tag(:li) do
        i 
        content_tag :ul do
          info.collect do |ii|
            content_tag :li do
              ii
            end
          end.join('').html_safe
        end
      end
    end.join('').html_safe
  end
end

它输出的结果是:

    • price
    • place
    • weight
    • price
    • place
    • weight
    • price
    • place
    • weight
    • price
    • place
    • weight
    • price
    • place
    • weight

而我期望的输出结果是:

  • apple
    • price
    • place
    • weight
  • watermelon
    • price
    • place
    • weight
  • orange
    • price
    • place
    • weight
  • pear
    • price
    • place
    • weight
  • pineapple
    • price
    • place
    • weight

如何修改才能达到这种结果?

PHP中文网
PHP中文网

认证0级讲师

全部回复(1)
某草草
def ul_li_ul_nest
  fruit = %w(apple watermelon orange pear pineapple)
  info = %w(price place weight)
  content_tag(:ul) do
    fruit.collect do |i|
       content_tag(:li) do
        i.html_safe + content_tag(:ul) do
          info.collect do |ii|
            content_tag :li do
              ii
            end
          end.join('').html_safe
        end
      end
    end.join('').html_safe
  end
end
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号