prototype,ajax请求用get时的缓存问题

new Ajax.Request(
  targetUrl,
        {
            method:'get',
            requestHeaders: ['Cache-Control','no-cache','If-Modified-Since','0'],
            asynchronous:true, 
            onComplete:updates
        }    
    );