Hi! You can try to install ext-ux, according to http://npm.sencha.com/
npm install -g @sencha/ext-ux
however, I've added ${workspace.dir}/node_modules/@sencha into packages section in...
Type: Posts; User: prefer
Hi! You can try to install ext-ux, according to http://npm.sencha.com/
npm install -g @sencha/ext-ux
however, I've added ${workspace.dir}/node_modules/@sencha into packages section in...
Next code don't working...
var defaultHeaders = {
'If-None-Match':''
};
var store = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url:...
Condor, thank you for helping me.
How to remove '_dc' parameter in GET-request?
If using disableCaching: false, then obtaining on server "GET /ConnViewProcessing/ HTTP/1.1",
else don't using, obtaining: "GET /ConnViewProcessing/?_dc=1263218247365 HTTP/1.1"
in cache Firefox...
I think so too, but not working..
var store = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: "/ConnViewProcessing/",
disableCaching:...
On
disableCaching: false,
method: 'GET' server add to response next headers:
'Cache-Control'
'Last-Modified'
'Expires'(default Expires=10 min.)
var defaultHeaders = {
'If-None-Match':''
};
var store = new Ext.data.Store({
proxy: new Ext.data.HttpProxy({
url: "/ConnViewProcessing/",
...
Seems, that ETag and If-None-Match not supported in the ajax.
Hello!
I want to cache Json data from simple ajax request.
disableCaching: false -- uses last midifided. How use If-None-Match and Etag?