【发布时间】:2015-04-11 18:22:10
【问题描述】:
这是我的商店
给出网址:'/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'
}
});
但正如我在浏览器的控制台中看到的那样。
对 url 的请求类似于:请求 URL:http://localhost:8080/JAXRS-HelloWorld/proxy/json.js?_dc=1428776089867
我还添加了 disableCaching : false
但它仍然显示 _dc=1428776089867
请帮忙
【问题讨论】:
标签: javascript extjs extjs4 extjs4.1 extjs4.2