こんにちは、sencha touch2 は初めてです。外部 Web サービスを使用する必要があります。コンソールで以下のようにコードを書きましたが、この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);
}
});