无法解析“c不是构造函数”错误 [英] Can't resolve "c is not a constructor" error

查看:111
本文介绍了无法解析“c不是构造函数”错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用ExtJS构建一个非常基本的概念验证应用程序,但我很难度过。



我想要的是两个网格从远程JSON文件获取数据,但无论我做什么,我都会继续收到该主题中的错误。



这是我的简单代码: / p>

app.js:

  .Loader.setConfig({启用:真}); 

Ext.application({
name:'GeoSniffer',
autoCreateViewport:true,
models:['Location','Client'],
商店:['地点','客户'],
});

Viewport.js

  Ext.define('GeoSniffer.view.Viewport',{
extends:'Ext.container.Viewport',
layout:'fit',

要求:[
'GeoSniffer.view.ClientsList',
'GeoSniffer.view.LocationsList'
],

initComponent: function(){
this.items = {
layout:{
type:'hbox',
align:'stretch'
},
items :[{
width:250,
xtype:'panel',
id:'west-region',
layout:{
type:'vbox'
align:'stretch'
},
items:[{
xtype:'locationslist',
flex:1
},{
xtype:'clientslist',
flex:1
}]
}]
};

this.callParent();
}
});

Client.js:

  Ext.define('GeoSniffer.model.client',{
extends:'Ext.data.Model',
fields:[
'ip',
'packetsCount',
'firstPacketUsec',
'latestPacketUsec',
'location',
'sessionsArr',
'currentSession'
]
});

Location.js

  Ext.define('GeoSniffer.model.Location',{
extends:'Ext.data.Model',
fields:[
'countryCode',
'countryName',
'region',
'city',
'postalCode',
'latitude',
'经度',
'dma_code',
'area_code',
'metro_code',
'packetsCount',
'sessionsArr',
'currentSession ',
'客户'
]
});

Clients.js

  Ext.define('GeoSniffer.store.Clients',{
extends:'Ext.data.Store',
需要:'GeoSniffer。 model.Client',
model:'GeoSniffer.model.Client',
autoLoad:false,
proxy:{
type:'ajax',
url: 'data / clients.json',
reader:{
type:'json',
root:'clients_list'
}
}
}) ;

Locations.js:

  Ext.define('GeoSniffer.store.Locations',{
extends:'Ext.data.Store',
require:'GeoSniffer。 model.Location',
model:'GeoSniffer.model.Location',
autoLoad:false,
proxy:{
type:'ajax',
url: 'data / locations.json',
reader:{
type:'json',
root:'locations_list'
}
}
}) ;

ClientsList.js:

  Ext.define('GeoSbiffer.view.ClientsList',{
extends:'Ext.grid.Panel',
alias:'widget。 clientlist',

store:'Clients',
title:'Clients',
hideHeaders:true,

initComponent:function(){
this.columns = [
{
dataIndex:'ip',
},
{
dataIndex:'packetsCount',
}

];

this.callParent();
}
});

LocationsList.js:

  Ext.define('GeoSbiffer.view.LocationsList',{
extends:'Ext.grid.Panel',
alias:'widget。位置列表',

存储:'位置',
标题:'位置',
hideHeaders:true,

initComponent:function(){
this.columns = [{
dataIndex:'countryName',
flex:1
},{
dataIndex:'city',
flex:1
}

];

this.callParent();
}
});

clients.json

  {
sessions_arr:[7,0,6,1,6,8,2,39,0,5,12,8],
clients_list:[
{
ip:82.166.201.153,
packetsCount:1,
firstPacketUsec:211474,
latestPacketUsec:211474,
location:{
countryCode:IL,
countryName:Israel,
region:unknown ,
city:unknown,
latitude:31.5,
longitude:34.75,
dma_code:0,
area_code :0,
metro_code:0,
packetsCount:0,
currentSession:0,
clients:[]
},
sessionsArr:[1,0,0,0,0,0,0,0,0,0,0,0],
currentSession:1
}
],
status:{
executionResult:OK,
isSniffer活动:false,
servletInfo:
}
}

locations.json

  {
sessions_arr 0,6,1,6,8,2,39,0,5,12,8],
locations_list:[
{
countryCode:US,
countryName:United States,
region:CA,
city:Palo Alto​​,
postalCode:94304,
纬度:37.376205,
经度:-122.1826,
dma_code:807,
area_code:650,
metro_code
packetsCount:2,
sessionsArr:[2,0,0,0,0,0,0,0,0,0,0,0],
currentSession :0,
clients:[
{
ip:69.171.242.14,
packetsCount:2,
firstPacketUsec 368942,
latestPacketUsec:369060,
sessionsArr:[2,0,0,0,0, 0,0,0,0,0,0,0],
currentSession:0
}
]
}
],
状态:{
executionResult:OK,
isSnifferActive:false,
servletInfo:
}
}

尝试使用Firebug通过堆栈跟踪进行调试没有任何有用的信息。



我缺少什么?






代码失败的地方:



解决方案

使用加载程序时,请确保您正在运行 ext-all-dev.js (或 ext-dev.js -debug -dev 将报告加载器错误,但 -debug 不会。这种类型的问题是随着应用程序的增长而追踪的难题,但是开发者会马上报告(在您的控制台中)。



我只看到这个tidbit一次,但它节省了我调试的日子。


I'm trying to build a very very basic "proof of concept" app using ExtJS but i'm having a very hard time.

All i want is two grids getting their data from a remote JSON file, but no matter what i do i keep on getting the error that's in the subject.

Here is my simple code:

app.js:

Ext.Loader.setConfig({enabled:true});

Ext.application({
    name: 'GeoSniffer',
    autoCreateViewport: true,
    models: ['Location', 'Client'],    
    stores: ['Locations', 'Clients'],
});

Viewport.js

Ext.define('GeoSniffer.view.Viewport', {
    extend: 'Ext.container.Viewport',
    layout: 'fit',

    requires: [
        'GeoSniffer.view.ClientsList',
        'GeoSniffer.view.LocationsList'
    ],

    initComponent: function() {
        this.items = {
            layout: {
                type: 'hbox',
                align: 'stretch'
            },
            items: [{
                width: 250,
                xtype: 'panel',
                id: 'west-region',
                layout: {
                    type: 'vbox',
                    align: 'stretch'
                },
                items: [{
                    xtype: 'locationslist',
                    flex: 1
                },{
                    xtype: 'clientslist',
                    flex: 1             
                }]
            }]
        };

        this.callParent();
    }
});

Client.js:

Ext.define('GeoSniffer.model.client', {
    extend: 'Ext.data.Model',
    fields: [
        'ip', 
        'packetsCount', 
        'firstPacketUsec', 
        'latestPacketUsec', 
        'location', 
        'sessionsArr', 
        'currentSession'
    ]
});

Location.js:

Ext.define('GeoSniffer.model.Location', {
    extend: 'Ext.data.Model',
    fields: [
        'countryCode', 
        'countryName', 
        'region', 
        'city', 
        'postalCode', 
        'latitude', 
        'longitude', 
        'dma_code', 
        'area_code', 
        'metro_code', 
        'packetsCount', 
        'sessionsArr', 
        'currentSession', 
        'clients'
    ]
});

Clients.js:

Ext.define('GeoSniffer.store.Clients', {
    extend: 'Ext.data.Store',
    requires: 'GeoSniffer.model.Client',
    model: 'GeoSniffer.model.Client',
    autoLoad: false,
    proxy: {
        type: 'ajax',
        url: 'data/clients.json',
        reader: {
            type: 'json',
            root: 'clients_list'
        }
    }
});

Locations.js:

Ext.define('GeoSniffer.store.Locations', {
    extend: 'Ext.data.Store',
    requires: 'GeoSniffer.model.Location',
    model: 'GeoSniffer.model.Location',
    autoLoad: false,
    proxy: {
        type: 'ajax',
        url: 'data/locations.json',
        reader: {
            type: 'json',
            root: 'locations_list'
        }
    }
});

ClientsList.js:

Ext.define('GeoSbiffer.view.ClientsList', {
    extend: 'Ext.grid.Panel',
    alias: 'widget.clientslist',

    store: 'Clients',
    title: 'Clients',
    hideHeaders: true,

    initComponent: function() {
        this.columns = [
            {
                dataIndex: 'ip',
            },
            {
                dataIndex: 'packetsCount',          
            }

        ];

        this.callParent();
    }
});

LocationsList.js:

Ext.define('GeoSbiffer.view.LocationsList', {
    extend: 'Ext.grid.Panel',
    alias: 'widget.locationslist',

    store: 'Locations',
    title: 'Locations',
    hideHeaders: true,

    initComponent: function() {
        this.columns = [{
            dataIndex: 'countryName',
            flex: 1
            },{
            dataIndex: 'city',
            flex: 1             
            }

        ];

        this.callParent();
    }
});

clients.json

{
    "sessions_arr": [ 7, 0, 6, 1, 6, 8, 2, 39, 0, 5, 12, 8],
    "clients_list": [
      {
        "ip": "82.166.201.153",
        "packetsCount": 1,
        "firstPacketUsec": 211474,
        "latestPacketUsec": 211474,
        "location": {
          "countryCode": "IL",
          "countryName": "Israel",
          "region": "unknown",
          "city": "unknown",
          "latitude": 31.5,
          "longitude": 34.75,
          "dma_code": 0,
          "area_code": 0,
          "metro_code": 0,
          "packetsCount": 0,
          "currentSession": 0,
          "clients": []
        },
        "sessionsArr": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        "currentSession": 1
      }
    ],
    "status": {
      "executionResult": "OK",
      "isSnifferActive": false,
      "servletInfo": ""
    }
}

locations.json

{
    "sessions_arr": [ 7, 0, 6, 1, 6, 8, 2, 39, 0, 5, 12, 8],
    "locations_list": [
      {
        "countryCode": "US",
        "countryName": "United States",
        "region": "CA",
        "city": "Palo Alto",
        "postalCode": "94304",
        "latitude": 37.376205,
        "longitude": -122.1826,
        "dma_code": 807,
        "area_code": 650,
        "metro_code": 807,
        "packetsCount": 2,
        "sessionsArr": [ 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        "currentSession": 0,
        "clients": [
          {
            "ip": "69.171.242.14",
            "packetsCount": 2,
            "firstPacketUsec": 368942,
            "latestPacketUsec": 369060,
            "sessionsArr": [ 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
            "currentSession": 0
          }
        ]
      }
    ],
    "status": {
      "executionResult": "OK",
      "isSnifferActive": false,
      "servletInfo": ""
    }
}

trying to debug with Firebug through the stack trace gave no helpful info.

What am i missing??


The place the code fails:

解决方案

When using the loader, make sure you are running with ext-all-dev.js (or ext-dev.js) not -debug. -dev will report loader errors, but -debug will not. This type of problem is a pain to track down as the application grows, but dev will report it right away (in your console).

I have only seen this tidbit mentioned once, but it has saved me days of debugging.

这篇关于无法解析“c不是构造函数”错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆