根据@demalexx 的回复,我在jquery fullcalendar 中创建了代码来显示我的django 应用程序的用户创建的帖子数。我将日历放在index.html 中并创建了django 视图来填充事件数据。
索引.html
...
$(document).ready(function() {
$('#calendar').fullCalendar({
events: {{posts_counts|safe}}
});
...
django视图
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 设置为
url(r'^$', 'myapp.views.index',{}, name = 'home'),
现在,一切正常。当我进入主页时(http://127.0.0.1:8000/myapp/
),当月的每一天显示当天创建的帖子数
问题::单击上一个,下一个按钮时如何做同样的事情?
我想在单击prev
和按钮时做同样的事情。所以next
,我决定调用另一个 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',{})
这是事情不能完全正常工作的时候。当单击上一个按钮时,警报框按预期弹出,然后执行 django 视图,打印语句中monthly_posts()
的值得到正确的值(假设今天是april 11
,我点击prev
按钮,打印语句打印
monthly_posts::year= 2012 月= 3
这是正确的..即 2012 年 3 月,因为我的 javascript 代码将 1 添加到月份编号(否则 2 代表 3 月,因为基于 0 javascript date.getMonth()
)
它还在视图中的最后一个打印语句中正确输出了 json 转储。我检查了那个月的帖子。那里没有问题。
但是,三月份的日历视图不显示任何事件!
当我手动输入网址时
http://127.0.0.1:8000/myapp/monthly_posts/2012/3/
django 视图中的打印语句正确执行
month_summary::year= 2012 month= 3
但是,月份视图仍然是当前月份的视图,即四月..我想这是可以预料的..当我点击上一个按钮时,惊喜来了,警报框正确弹出,
并且三月的月视图正确显示了所有事件的所有日子..!
我对此有点困惑..如何才能在单击 prev 按钮时正确显示事件?我想我在这里遗漏了一些关于 ajax 和 django 工作方式的基本知识。