clear cache of IE

Hi webix team,
I have used angular service to send & get data from backend,But on IE rather sending request to backend it showing data received from cache, I have used property cache:false, but it didn’t work

There are two workarounds

a) mix extra parameter in ajax call

{
    view:"list", url:"./data?uid="+webix.uid()
}

b) use POST which is never cached

    view:"list", url:"post->./data"