我关注calendar
尝试在我的页面中显示日历,
index.haml
%div#articles
- calendar do |date|
- p(date.to_s)
%b= date.day
我可以从控制台
获取输出- p(date.to_s)
"2014-03-30"
"2014-03-31"
"2014-04-01"
"2014-04-02"
...
但是从HTML中得不到任何东西
<div id="articles">
</div>