我是 Web 开发的新手(主要是桌面开发人员)并且在使用 CodeIgniter 时遇到了问题,它是日历库。
我的问题是,当我生成日历时,我传递给函数的 URL 被附加到他当前 URL 的末尾!以下是相关代码:
//链接生成代码
//Get numbers of days in month
$day_count = cal_days_in_month(CAL_GREGORIAN, $month, $year);
//For each day of the month, check for appointments
for($i = 1; $i <= $day_count; $i++)
{
//Create date array
$date = array
(
'year' => $year,
'month' => $month,
'day' =>$i
);
if ($this->appointment_model->get_appointment_dates($date))
{
//If there is an appointment, add link
$appointment_data[$i] = 'view_day'. '/' . $year . '/' .$month;
}
}
//日历模板
$calendar_template ='
{table_open}<table border="1" cellpadding="0" cellspacing="0">{/table_open}
{heading_row_start}<tr>{/heading_row_start}
{heading_previous_cell}<th><a href="{previous_url}"><<</a></th>{/heading_previous_cell}
{heading_title_cell}<th colspan="{colspan}">{heading}</th>{/heading_title_cell}
{heading_next_cell}<th><a href="{next_url}">>></a></th>{/heading_next_cell}
{heading_row_end}</tr>{/heading_row_end}
{week_row_start}<tr>{/week_row_start}
{week_day_cell}<td>{week_day}</td>{/week_day_cell}
{week_row_end}</tr>{/week_row_end}
{cal_row_start}<tr>{/cal_row_start}
{cal_cell_start}<td>{/cal_cell_start}
{cal_cell_content}<a href="index.php/calendar/{content}/{day}">{day}</a>{/cal_cell_content}
{cal_cell_content_today}<div class="highlight"><a href="index.php/calendar/{content}/{day}">{day}</a></div>{/cal_cell_content_today}
{cal_cell_no_content}{day}{/cal_cell_no_content}
{cal_cell_no_content_today}<div class="highlight">{day}</div>{/cal_cell_no_content_today}
{cal_cell_blank} {/cal_cell_blank}
{cal_cell_end}</td>{/cal_cell_end}
{cal_row_end}</tr>{/cal_row_end}
{table_close}</table>{/table_close}
';
包含日历的url如下:
http://localhost:8888/AI_Project/index.php/calendar/view_appointments/2013/06
添加到日历的链接如下所示:
http://localhost:8888/AI_Project/index.php/calendar/view_appointments/2013/index.php/calendar/view_day/2013/06/18
我不确定这是为什么。任何帮助,将不胜感激。让我知道您是否还需要其他任何东西!
谢谢!