0

这是我的模型

Ext.define("StockWatch.model.Market", {
extend: "Ext.data.Model",
config: {
    idProperty: 'CompanyCode',
    fields: [
        { name: 'CompanyCode', type: 'string' },
        { name: 'LastTradedPrice', type: 'string' },
        { name: 'PercentageDiff', type: 'string' },
        { name: 'FiftyTwoWeekHigh', type: 'string' },
        { name: 'FiftyTwoWeekLow', type: 'string' },
        { name: 'ChangePercent', type: 'string' },
        { name: 'Change', type: 'string' },
        { name: 'MarketCap', type: 'string' },
        { name: 'High', type: 'string' },
        { name: 'Low', type: 'string' },
        { name: 'PrevClose', type: 'string' },
        { name: 'OpenInterest', type: 'string' },
        { name: 'MarketLot', type: 'string' },
        { name: 'ChangeInOpenInterest', type: 'string' },
        { name: 'LastTradedTime', type: 'date', dateFormat: 'c' },
    ]
}
});

这是我的商店

Ext.define("StockWatch.store.Markets", {
    extend: "Ext.data.Store",
    requires: ["Ext.data.proxy.LocalStorage", "Ext.data.proxy.JsonP", "StockWatch.model.Market"],
    config: {
        model: "StockWatch.model.Market",
        autoLoad : true,
        proxy : {
            type : 'jsonp',
            url : 'http://money.rediff.com/money1/current_status_new.php?companylist=17023928%7C17023929&id=1354690151&Rand=0.6305125835351646',
            reader:{
                    type:'json',
                    rootProperty:''
                }
        }
    }
});

我无法将数据添加到我的列表中,可能是在某个地方获取数据是错误的。指导我找到解决方案。我也在使用拉刷新列表插件,所以每次我拉下列表时数据会自动加载还是我必须在那里写点什么?

提前谢谢

编辑: 我也在控制台中收到此警告

Resource interpreted as Script but transferred with MIME type text/html: "http://money.rediff.com/money1/current_status_new.php?companylist=17023928%7C17023929&id=1354690151&Rand=0.6305125835351646&_dc=1355822361093&page=1&start=0&limit=25&callback=Ext.data.JsonP.callback1". 
4

2 回答 2

1

使用回调键

callbackKey:指定将在请求完成时发送到包含要执行的函数名称的服务器的 GET 参数。默认为回调。因此,一个常见的请求将采用 url?callback=Ext.data.JsonP.callback1 的形式

默认为:“回调”

于 2012-12-19T15:12:19.027 回答
0

您需要将 JSON 响应包装在 JSONP 的回调函数中。看起来你的远程调用没有返回这个,请尝试指定一个回调参数 - 否则如果远程服务器不允许这样做,你需要将它传递给另一个服务器以将其包装在回调函数中。

另外,您在帖子底部提到的警告,请不要担心。它不会引起任何问题。

于 2012-12-19T06:49:18.967 回答