嗨,我是 sencha touch2 的新手。我必须使用外部网络服务。我在控制台中编写了如下代码,它给出了这样的错误Uncaught TypeError: Cannot call method 'request' of undefined。什么问题,请提供解决方案。谢谢
Ext.util.JSONP.request({
url: 'http://localhost/SLS.BRND.Services/Service1.asmx/Helloworld',
params: {
method: 'Helloworld',
format: 'json',
callback: 'callback'
},
success: function(response) {
alert('Working!')
console.log(response);
},
failure: function(response) {
alert('Not working!')
console.log(response);
}
});