用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3790|回复: 1
收起左侧

手册上关于Calendar类的调用一点错误

[复制链接]
发表于 2008-1-14 18:45:18 | 显示全部楼层 |阅读模式
Showing Next/Previous Month Links,手册代码如下:$this->load->library('calendar');

$prefs = array (
               'show_next_prev'  => TRUE,
               'next_prev_url'   => 'http://www.your-site.com/index.php/calendar/show/'
             );

$this->calendar->generate($this->uri->segment(3), $this->uri->segment(4), $prefs);

但是在我的浏览器,始终无法显示Next/Previous,后来发现必须在load的时候把prefs传进去,代码如下:

$prefs = array (
               'show_next_prev'  => TRUE,
               'next_prev_url'   => 'http://www.your-site.com/index.php/calendar/show/'//这些改成你自己的路径
             );
$this->load->library('calendar', $prefs);
$this->calendar->generate($this->uri->segment(3), $this->uri->segment(4));

[ 本帖最后由 roger_masslong 于 2008-1-14 18:47 编辑 ]

评分

参与人数 1威望 +5 收起 理由
Hex + 5 原创内容

查看全部评分

发表于 2008-1-15 13:36:50 | 显示全部楼层
鼓励发现 CI 的 BUG,加分!

本版积分规则