过滤范围从function show_page(category, type)
{
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
var xmlhttp=new XMLHttpRequest();
}
else {
// code for IE6, IE5
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{ if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
if(type != 'search')
{
document.getElementById("search_content").style.display = 'none';
document.getElementById("content").style.display = 'block';
document.getElementById("content").innerHTML=xmlhttp.responseText; //NELL' ELEMENTO CON QUESTO ID VIENE MOSTRATO IL RISULTATO MANDATO DAL SERVER
} else
{
document.getElementById("content").style.display = 'none';
document.getElementById("search_content").style.display = 'block';
document.getElementById("search_content").innerHTML=xmlhttp.responseText; //NELL' ELEMENTO CON QUESTO ID VIENE MOSTRATO IL RISULTATO MANDATO DAL SERVER
}
}
}
xmlhttp.open("GET","show_page_process.php?page="+category+"&type="+type,true);
xmlhttp.send();
}
到4/11 12:00 am
现在,到范围不包括当天的项目,因为它只按 AM 过滤,这意味着5/11 12:00 am
。
我希望此范围应该有24小时的偏移,以便datetime.datetime(2015, 11, 5, 0, 0)
结束5/11
的范围。
答案 0 :(得分:0)
您可以为所有数据添加12小时,进行过滤并减去12小时。
import datetime
original = datetime.datetime(2015, 11, 5, 0, 0)
added = original + datetime.timedelta(hours=12)