使用 Django 视图更新 jQuery FullCalendar 中的事件,单击“上一步”按钮



根据@demalexx的回复,我创建了代码来显示我的django应用程序用户在jquery fullcalendar中创建的帖子数量。我把日历放在索引中.html并创建了 django 视图来填充事件数据。

索引.html

...
$(document).ready(function() {
   $('#calendar').fullCalendar({
       events: {{posts_counts|safe}}
});
...

姜戈视图

    def index(request){
      now=datetime.datetime.now()
      cday=now.day
      cmonth=now.month
      cyear=now.year
      for i in range(1,cday+1):
        posts_count.append({'title':str(Post.objects.filter(postauthor=request,user,posteddate__year=current_year,posteddate__month=current_month,posteddate__day=i).count()),'start':now.strftime("%Y-%m-"+str(i)),'end':now.strftime("%Y-%m-"+str(i))})}
      return render(request, 'index.html',{'posts_counts':simplejson.dumps(posts_counts)})

在 urls.py 中,我把网址作为

url(r'^$', 'myapp.views.index',{}, name = 'home'),

现在,事情按预期工作。当我访问主页(http://127.0.0.1:8000/myapp/)时,当月的每一天都会显示当天创建的帖子数量

问题::如何在单击上一个,下一个按钮时做同样的事情?

我想在单击prevnext按钮时做同样的事情。所以,我决定调用另一个 django 视图,通过fullCalendar('getDate')方法返回的月份和年份。我像这样编码。

索引.html

...
    $(document).ready(function() {
            $('#calendar').fullCalendar({
                events: {{entry_count|safe}}
            });
            $('.fc-button-prev').click(function(){
                var d=$('#calendar').fullCalendar('getDate');
                var month=d.getMonth()+1;
                var year=d.getFullYear();              
                    //need to call django view with these values...        
            $.ajax({
         url:'/myapp/monthly_posts/'+year+'/'+month,
             type:"GET",
             success:function(){
             alert("done");                         
            },
          }
        );
        });
            $('.fc-button-next').click(function(){
                   //alert('next is clicked, do something');
                       //blank for now
                });
        });

最后,我编写了 django 视图来处理这个 get 请求——该请求是在单击 prev 按钮时发送的

def monthly_posts(request,year,month):
    print 'monthly_posts::year=',year,' month=',month    
    posts_counts=[]
    #find number of days in month and feed to forloop
    days_in_month=calendar.monthrange(int(year), int(month))[1]
    for i in range(1,days_in_month+1):
        cdate=datetime.datetime(int(year),int(month),i)
        posts_counts.append({
                              'title':str(Post.objects.filter(postauthor=request.user,posteddate__year=year,posteddate__month=month,posteddate__day=i).count()),
                              'start':cdate.strftime("%Y-%m-%d"),
                              'end':cdate.strftime("%Y-%m-%d")
                              })
    dumped=simplejson.dumps(posts_counts)
    print 'dumped posts=',dumped
    return render(request, 'index.html',{'posts_counts':dumped})

同样在 urls.py

url(r'^monthly_posts/(?P<year>d{4})/(?P<month>d{1,2})/$','myapp.views.monthly_posts',{})

这是事情不能完全工作的时候。当点击prev按钮时,警报框会按预期弹出,然后执行django视图,monthly_posts()中的print语句得到正确的值(假设今天是april 11,我点击prev按钮,打印语句

monthly_posts::年= 2012 月= 3

这是正确的..即 2012 年 3 月,因为我的 JavaScript 代码在月份数字上加了一个 1(否则三月是 2 - 因为基于 0 的 javascript date.getMonth()

它还在视图中的最后一个打印语句处正确输出 JSON 转储。我检查了当月发布的帖子。那里没有问题。

但是,三月份的日历视图不显示任何事件!

当我手动输入网址时

http://127.0.0.1:8000/myapp/monthly_posts/2012/3/

在 Django 视图中打印语句正确执行

month_summary::year= 2012  month= 3

但是,月份视图仍然是当前月份的视图,即四月。我想这是意料之中的。当我点击上一个按钮时,惊喜来了,警报框正确弹出,

三月的月份视图正确显示所有日期的事件..!

我对此有点困惑..我该怎么做才能在单击上一个按钮时正确显示事件?我想我在这里错过了一些关于ajax和django工作方式的基本知识。

在 Django 视图中使用 Ajax:

def index(request):
    if request.is_ajax():
        return get_monthly_posts(request.GET['start'], request.GET['end'])
    return TemplateResponse(request, 'index.html', {})

准备响应:

def get_monthly_posts(start, end):
    #prepare data_list using start nad end variables
    #remember that start/end variables are in timestamp
    return HttpResponse(simplejson.dumps(data_list), mimetype='application/javascript')

urls.py:

url(r'^index/', 'myapp.views.index', name='index')

索引.html:

$('#calendar').fullCalendar({
    events: '/index/'
});

相关内容

  • 没有找到相关文章

最新更新