I've a simple angularjs application like:
module = angular.module 'testFooBarModule', ['ngResource']
module.factory 'FooBar', ($resource)->
$resource 'foobar/target', {},
load:
method: 'GET'
cache: false # no effect
headers:
'Cache-Control': 'no-cache' # no effect
module.controller 'FooBarCtrl', ($scope, FooBar)->
FooBar.load (result)->
console.log result
With highspeed internet like home wlan or mobile hspa everything works fine. The request has fired and the server gives me a unique response. But with 2G internet like edge or gprs the server receives no requests and the angularjs app give me always the same results. No errors occur. The "no-cache" header were sended as well.
I've no idea what's wrong. Can anyone help me?
Sry for my english :D
best regards.