Sencha Architect でアプリを作成しました。ストアとモデルも作成しました。ビューポートは初期ビューです。今Firefoxでテストすると、エラーが発生します:
「c はコンストラクターではありません」
そして何も起こりません。多くのファイルが生成されますが、生成された app.js というファイルには次のものが含まれます。
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
models: [
'providerModel',
'schedulingModel'
],
stores: [
'comboboxProviders',
'gridScheduling',
'comboboxDriver',
'comboboxVehicle',
'comboboxStop',
'gridLiveMapVehicles',
'gridConfigurationProviders',
'comboboxVehicleType',
'comboboxVehicleProvider',
'gridConfigurationVehicles',
'gridConfigurationDrivers',
'gridConfigurationStops',
'gridConfigurationRoutes',
'comboboxTimezone',
'comboboxRoutes',
'gridConfigurationRouteXYZ',
'gridConfigurationDepots',
'gridConfigurationOperationalDay',
'gridConfigurationOperationalHour',
'comboboxClockType',
'comboboxSpeedFormat',
'comboboxScheduleMode'
],
autoCreateViewport: true,
name: 'MyApp'
});
問題は何ですか?