网站超链接点击情况保存至mongodb
发布时间:2023-10-25 15:05:45 所属栏目:系统 来源:
导读:前端主要代码(django模板)
复制代码
<!-- HTML5 最新咨询-->
<div class="djangonew" >
<h5 >Html5最新动态</h5>
{% for title,curl,da
复制代码
<!-- HTML5 最新咨询-->
<div class="djangonew" >
<h5 >Html5最新动态</h5>
{% for title,curl,da
前端主要代码(django模板) 复制代码 <!-- HTML5 最新咨询--> <div class="djangonew" > <h5 >Html5最新动态</h5> {% for title,curl,date in h6news %} <p ><a onclick="save_url(this)" href="`curl`" target="_blank">`title`</a> <span > `date`</span> {% endfor %} </div> <script type="text/javascript"> $.ajaxSetup({ data: {csrfmiddlewaretoken: '{{ csrf_token }}' }, }); function save_url(t) { var data = { IP:"`IP`", url: t.href, }; $.post('/api/click_url', data); } </script> 复制代码 后端代码(django) 复制代码 #访问状态 @login_required(login_url="/") def Visit(request): r10=Redis(host='localhost',port=6379,db=10,password='**') r12=Redis(host='localhost',port=6379,db=12,password='**') #mongo Click_url today_sec = time.mktime(time.strptime(time.strftime("%Y%m%d"),"%Y%m%d")) curl_data = db.curl.find({'date':{'$gte':today_sec}},{'_id':0}) curl_data = list(curl_data) if len(curl_data): for i in curl_data: i['date'] = time.strftime("%Y%m%d %T",time.localtime(i['date'])) #在线 online_ipall=[] for i in r10.keys('IP*'): online_ipall.append((i,r10.get(i))) #今天 today_ipallwx=[] for i in r12.keys('IP*'): today_ipallwx.append((i,r12.lrange(i,start=0,end=-1))) today_ipall=sorted(today_ipallwx,key=lambda x:x[1][1],reverse=True) return render_to_response('plug/visit_state.html',{"curl_data":curl_data,"online_ipall":online_ipall,"today_ipall":today_ipall},RequestContext(request)) #点击超链接统计 def Click_url(request): if request.method == 'POST': url = request.POST.get('url') IP = request.POST.get('IP') db.curl.insert({'ip':IP, 'url':url, 'date':time.time()}) return HttpResponse("ok") (编辑:聊城站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
推荐文章
站长推荐