如何在ruby文件中直接使用循环创建haml表?

时间:2015-08-30 14:55:01

标签: ruby-on-rails ruby sinatra haml

我正在尝试创建一个显示zip文件内容的表,如下所示:

Name      Size
asdf1.jpg 100KB
asdf2.jpg 200KB
asdf3.jpg 300KB

我的代码在这里(实际上,我是从ZipRuby的README中复制的):

#myapp.rb
post 'checkfile/?' do
    Zip::Archive.open('zip_file.zip') do |ar|
        n = ar.num_files 

        n.times do |i|
            entry_name = ar.get_name(i) # get entry name from archive

            # open entry
            ar.fopen(entry_name) do |f| # or ar.fopen(i) do |f|
                $name = f.name           # name of the file
                $size = f.size           # size of file (uncompressed)
                $comp_size = f.comp_size # size of file (compressed)
                content = f.read # read entry content
            end
        end
        # Zip::Archive includes Enumerable
        entry_names = ar.map do |f|
            f.name
        end
    end
    haml :checkresult
end

我的haml代码:

-# checkresult.haml
%table
%thead
    %tr
        %th Name
        %th Size
%tbody
    %tr
        -# I want to show files in zip here

抱歉英文不好,标题不好。 (使用Sinatra v1.4.6(与Puma。))

1 个答案:

答案 0 :(得分:1)

您可以通过为Sinatra应用中的实例变量赋值来传递haml渲染的数据。请浏览this tutorial

您需要对myapp.rb进行一些更改,如下所示。我们定义@result数组来收集结果

# myapp.rb
post 'checkfile/?' do

    @result = []  # this will hold results.

    Zip::Archive.open('zip_file.zip') do |ar|
        ar.each do |f|
            @result << [f.name, f.size, f.comp_size]
        end
    end

    haml :checkresult
end

您需要更新您的haml文件,如下所示 - 添加table标记,添加迭代器以迭代结果并发出td

-# checkresult.haml
%table
%thead
    %tr
        %th Name
        %th Size
        %th Compressed size
%tbody
    %table
        - @result.each do |i|
            %tr
                %td= i[0]
                %td= i[1]
                %td= i[2]

PS:我无法在我的Windows机器上安装ZipRuby,因此上面的部分代码基于documentation进行猜测 - 希望您能够了解必须完成的工作。