使用 google 提要加载基于 ExtJS 的应用时出现问题 api
Having issues while loading the ExtJS based app with google feeds api
加载基于 ExtJS 并使用 Sencha 5.1.3.61. 的应用程序时出现问题。问题似乎出在这个文件 ext/packages/ux/src/google/Feeds.js.
应用程序启动时出现此错误..
"?file=feeds&v=1.x&output=nocss%3Dtrue&async=2:1 Uncaught Error: Module:'feeds' not found!"
任何解决方案或解决方法都会有所帮助!!
您可以尝试覆盖它,例如:
Ext.define('Fiddle.ux.google.Feeds', {
override: 'Ext.ux.google.Feeds',
requiresGoogle: {}
});
问题已通过将 requiresGoogle : {...}
替换为 _requiresGoogle : {...}
得到解决。就是这样。
来源:https://www.sencha.com/forum/showthread.php?334652-Google-Feed-API-deprecated/page2 .
加载基于 ExtJS 并使用 Sencha 5.1.3.61. 的应用程序时出现问题。问题似乎出在这个文件 ext/packages/ux/src/google/Feeds.js.
应用程序启动时出现此错误..
"?file=feeds&v=1.x&output=nocss%3Dtrue&async=2:1 Uncaught Error: Module:'feeds' not found!"
任何解决方案或解决方法都会有所帮助!!
您可以尝试覆盖它,例如:
Ext.define('Fiddle.ux.google.Feeds', {
override: 'Ext.ux.google.Feeds',
requiresGoogle: {}
});
问题已通过将 requiresGoogle : {...}
替换为 _requiresGoogle : {...}
得到解决。就是这样。
来源:https://www.sencha.com/forum/showthread.php?334652-Google-Feed-API-deprecated/page2 .