last modify試み

1990 ワード

ウェブ層の試み:
javascirptコードは、ajaxを通じて要求ヘッダを追加し、304 not modifyに戻ることができますが、jsは自分でデータをキャッシュする必要があります.そうでなければ、戻ってきたら、データの展示がありません.
 
//			var date = date_ddmmmyy(new Date(Date.parse(document.lastModified)));
//			var time = document.lastModified.substring(document.lastModified.indexOf(" "));
//			heads ={'Last-Modified':date+time};
 
		//set the last-modify-head
		if(heads){
			if(heads['Last-Modified'])
				this._request.setRequestHeader("If-Modified-Since",heads['Last-Modified']);
		}
		//set the last-modify-hea
 
 
 
//
// format date as dd-mmm-yy
// example: 12-Jan-99
//
function date_ddmmmyy(date)
{
  var d = date.getDate();
  var m = date.getMonth() + 1;
  var y = date.getYear();

  // handle different year values 
  // returned by IE and NS in 
  // the year 2000.
  if(y >= 2000)
  {
    y -= 2000;
  }
  if(y >= 100)
  {
    y -= 100;
  }

  // could use splitString() here 
  // but the following method is 
  // more compatible
  var mmm = 
    ( 1==m)?'Jan':( 2==m)?'Feb':(3==m)?'Mar':
    ( 4==m)?'Apr':( 5==m)?'May':(6==m)?'Jun':
    ( 7==m)?'Jul':( 8==m)?'Aug':(9==m)?'Sep':
    (10==m)?'Oct':(11==m)?'Nov':'Dec';

  return "" +
    (d<10?"0"+d:d) + "-" +
    mmm + "-" +
    (y<10?"0"+y:y);
}

 
バックグラウンドjava処理
org.springframework.web.context.request.WebRequest		

//check is modify
		if(webRequest.checkNotModified(lastModifyTime)){
			return null;
		}