ウィンドウの1つで、検索タイプをパラメーターとして渡します。その後、mcmFindCityPair で検索タイプを取得し、 mcmFocusMarketStoreストアと一緒に渡します。呼び出されたストアで検索タイプを渡す必要があります。mcmFocusMarketStore . ストアを渡しましたが、searchType が定義されていないと表示されます。コードを再編成するのを手伝ってくれる人はいますか。スニペットは次のとおりです。
ここにwindow.jsがコードです...
App.mcmFindCityPair(this.mcmSearchType, this.mcmOriginTextbox.getValue(),
this.mcmDestinationTextbox.getValue(),this.mcmStartDateTimeField.getValue(),
this.mcmEndDateTimeField.getValue());
app.js ここにコードがあります
mcmFindCityPair : function(searchType, org, dest, start, end) {
App.mcmFocusMarketStore.removeAll(true);
var startDate = start ? Ext.Date.format(start, 'd-M-y H:i') : '';
var endDate = end ? Ext.Date.format(end, 'd-M-y H:i') : '';
console.log(searchType);
App.mcmFocusMarketStore.proxy.url = getProxyUrl()
+ "&action=getFMFlights&searchType="+searchType
+ ("&origin=" + org)
+ ("&destination=" + dest)
+ (startDate ? ("&startDate=" + startDate) : '')
+ (endDate ? ("&endDate=" + endDate) : '');
console.log(App.mcmFocusMarketStore.proxy.url);
App.mcmFocusMarketStore.load();
App.mcmAllFocusMarketStore.removeAll(true);
App.mcmAllFocusMarketStore.proxy.url = getProxyUrl()
+ "&action=getFMFlights&searchType="+searchType;
App.mcmAllFocusMarketStore.load();
}
App.mcmFocusMarketStore = Ext.create(
'Ext.data.Store',
{
model : 'FocusMarketModel',
proxy : {
timeout : AJAX_TIMEOUT,
type : 'jsonp',
url : getProxyUrl()
+ "&action=getFMFlights&searchType="+ searchType,
reader : {
type : 'focusmarketReader',
root : 'success',
totalProperty : 'total'
},
listeners : {
exception : function(proxy, exception,
operation) {
alert('Failed to get any kind of response from server! The application will be restarted. ');
}
}
}
});
コードを再編成するのを手伝ってくれる人はいますか。前もって感謝します