1

无法调用未定义 app.js:1 的方法“子字符串”

我在基于在 sencha doc 上构建您的第一个应用程序教程的 sencha touch 应用程序的构建包版本上收到此错误。普通版运行得很好,但是在构建时我只是蓝屏。当我评论嵌套列表的代理相关行时,构建的版本运行良好。

proxy: {
    type: 'jsonp',
    url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://feeds.feedburner.com/SenchaBlog',
    reader: {
        type: 'json',
        rootProperty: 'responseData.feed.entries'
    }
}

解决了

大多数网站声称这是因为 xtype 写得不好(示例),但在这种情况下,这是由于缺少对 JsonP、NestedList 等内容的明确要求。

4

2 回答 2

1

SOLVED

Most sites claim it is because an xtype is badly written (example), but, in this case it was due to missing explicit requires of things such as the JsonP, NestedList, etc.

于 2013-03-27T14:46:00.800 回答
0

尝试在 urls encodeURI 或 encodeURIComponent 中对 Urls 进行编码。

这应该可以解决它 - 如果没有,请发布此文件的整个代码。

您是否只是忘记添加“叶子”和“字段”信息?

于 2013-03-26T17:01:01.277 回答