这是我的商店
给出了网址:'/ rest / helloworld / submit',
var store = Ext.create('Ext.data.Store', {
autoLoad: false,
fields: ['name', 'date', 'email'],
pageSize: 10, // items per page
proxy: {
method: 'GET',
url: '/rest/helloworld/submit',
disableCaching: false,
type: 'json',
root: 'result',
totalProperty: 'total'
}
});
但我可以在浏览器的控制台中看到。
请求网址如下:请求网址:http://localhost:8080/JAXRS-HelloWorld/proxy/json.js?_dc=1428776089867
我还添加了disableCaching:false
但仍显示_dc = 1428776089867
请帮忙
答案 0 :(得分:0)
尝试使用ajax
代理和noCache
属性:
var store = Ext.create('Ext.data.Store', {
autoLoad: false,
fields: ['name', 'date', 'email'],
pageSize: 10, // items per page
proxy: {
method: 'GET',
url: '/rest/helloworld/submit',
noCache: false,
type: 'ajax',
root: 'result',
totalProperty: 'total'
}
});