[]一个很奇怪的问题,不知道其他同学遇到没有
我创建了一个空的工程,然后删掉里面默认生成的程序入口文件,新建一个main.ts,输入以下代码:
class main{
constructor(){
Laya.init(600,400);
console.log(common.num);
}
}
new main();
这里面访问了另外一个文件common.ts中定义的类:
class common{
constructor(){
}
public static num : number = 1000000;
}
然后启动调试,居然报了这个错:
Uncaught ReferenceError: common is not defined
at new main (main.ts:4)
at main.ts:11
我试了很多次,都是这样,哪位大神给解答以下,为什么会这样
class main{
constructor(){
Laya.init(600,400);
console.log(common.num);
}
}
new main();
这里面访问了另外一个文件common.ts中定义的类:
class common{
constructor(){
}
public static num : number = 1000000;
}
然后启动调试,居然报了这个错:
Uncaught ReferenceError: common is not defined
at new main (main.ts:4)
at main.ts:11
我试了很多次,都是这样,哪位大神给解答以下,为什么会这样
没有找到相关结果
已邀请:
要回复问题请先登录
6 个回复
qian
赞同来自:
没有报错
hellowsw
赞同来自:
qian
赞同来自:
qian
赞同来自:
hellowsw
赞同来自:
看嘛,直接调试中断了,哎呀,我好无语啊
hellowsw
赞同来自:
index里面修改了就可以了