gpt4 book ai didi

ruby-on-rails - html 表中的突破日期

转载 作者:数据小太阳 更新时间:2023-10-29 08:01:21 25 4
gpt4 key购买 nike

有更简单的方法吗?

Controller :

def index
@ranches = Ranch.all
dates = (Date.today..Date.today + 52.weeks).select(&:sunday?)
@date_range = dates
dates.each do |date|
month = date.strftime("%b")
year = date.strftime("%Y")
@dates ||= {}
@dates[year] ||= {}
@dates[year][month] ||= []
@dates[year][month] << date
end

查看:

%table{:border => 1}
%thead
%tr
%th{:rowspan => 3}
Ranch
- @dates.each do |year,months|
-# raise months.inspect
%th{:colspan => months.collect{|m| m[1]}.flatten.count }
= year
%tr
- @dates.each do |year,months|
- months.each do |month, days|
%th{:colspan => days.count}
= month
%tr
- @dates.each do |year,months|
- months.each do |month, days|
- days.each do |day|
%th
= day.day

这是我得到/寻找的输出:

html table with year month day breakout

除此之外,我还将像下面这样(这将是下一行和后续行:

%tbody
- @ranches.each do |ranch|
%tr
%td
= ranch.name
- ranch.placements.each do |placement|
- @date_range.each do |date|
- start_date = date
- end_date = date.end_of_week
- if (start_date..end_date).include?(placement.placement_date)
%td
= placement.value

我还没有弄清楚这部分的 colspan 等。我希望有一些神奇的 rails 方法来做这些事情,这样它看起来更好,效果更好。我对大多数建议持开放态度。

最佳答案

看看 Enumerable#group_by 的力量和 Enumerable#chunk !

require 'date'
require 'haml'

now = Date.today
next_sunday = now - now.wday + 7
@sundays = (0...52).map { |w| next_sunday + 7*w }

puts Haml::Engine.new(<<ENDHAML).render(binding)
%table
%thead
%tr
- @sundays.group_by(&:year).each do |year,days|
%th{colspan:days.length}= year
%tr
- @sundays.chunk{ |d| d.strftime('%b') }.each do |month,days|
%th{colspan:days.length}= month
%tr
- @sundays.each do |date|
%th= date.day
ENDHAML

产生:

<table>
<thead>
<tr>
<th colspan='46'>2012</th>
<th colspan='6'>2013</th>
</tr>
<tr>
<th colspan='2'>Feb</th>
<th colspan='4'>Mar</th>
<th colspan='5'>Apr</th>
<th colspan='4'>May</th>
<th colspan='4'>Jun</th>
<th colspan='5'>Jul</th>
<th colspan='4'>Aug</th>
<th colspan='5'>Sep</th>
<th colspan='4'>Oct</th>
<th colspan='4'>Nov</th>
<th colspan='5'>Dec</th>
<th colspan='4'>Jan</th>
<th colspan='2'>Feb</th>
</tr>
<tr>
<th>19</th>
<th>26</th>
<th>4</th>
<th>11</th>
<th>18</th>
<th>25</th>
<th>1</th>
<th>8</th>
<th>15</th>
<th>22</th>
<th>29</th>
<th>6</th>
<th>13</th>
<th>20</th>
<th>27</th>
<th>3</th>
<th>10</th>
<th>17</th>
<th>24</th>
<th>1</th>
<th>8</th>
<th>15</th>
<th>22</th>
<th>29</th>
<th>5</th>
<th>12</th>
<th>19</th>
<th>26</th>
<th>2</th>
<th>9</th>
<th>16</th>
<th>23</th>
<th>30</th>
<th>7</th>
<th>14</th>
<th>21</th>
<th>28</th>
<th>4</th>
<th>11</th>
<th>18</th>
<th>25</th>
<th>2</th>
<th>9</th>
<th>16</th>
<th>23</th>
<th>30</th>
<th>6</th>
<th>13</th>
<th>20</th>
<th>27</th>
<th>3</th>
<th>10</th>
</tr>
</thead>
</table>

关于ruby-on-rails - html 表中的突破日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9298543/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com