|
通过iframe引入了日历类,现在遇到如下几个问题想请大家帮忙解决:
1、关于每月日志的调用,其他代码已经完成。就剩下前端调用,我在日历类的主题中设置如下:
{heading_title_cell}<th colspan="{colspan}"><a href="<?php $this->uri->segment(3)=='' ? echo 'index.php/calendar/article_m_list/'.date('Y').'/'.date('m'); : echo 'index.php/calendar/article_m_list/'.$this->uri->segment(3).'/'.$this->uri->segment(4);?>" target="_blank">{heading}</a></th>{/heading_title_cell}
我不清楚是否是因为上面<?php ?>导致程序报错。各位轻点拍砖,我完全没学过php。
2、由于每月日期的排布不定,导致部分日期显示不完全。曾经尝试过将高度设置为auto,但没有效果。ps,我是通过iframe中src直接调用控制器生成日历的,没有调用view页面。
3、在进行每天发布日志统计的时候,如何将每天发布日志的数量和查看当日发布日志的列表地址赋值到
$data = array(
3 => 'article/show/1',
7 => 'article/show/1',
26 => 'article/show/1'
);
中。查看每天发布日志列表的model已写好。 |
|