problem: read from cache
$.get('some.jsp', { param_name : param_value } function (responseText)
{
......
}
solution : change url each times.
$.get('some.jsp?dummy='+Math.random() , { param_name : param_value } function (responseText)
{
......
}
캐시에서 가져오지 못하도록 강제로 http get method의 source url 을 호출때마다 다르게 해준다.
( change URL by extra random value for each get requests. )
No comments:
Post a Comment