Alloy.js 中的全局变量
Global var in Alloy.js
我有一个带有 Appcelerator Titanium SDK 5.0 的旧应用程序,我需要安装 Titanium SDK 7.5。此应用 运行 Android。
在Alloy.js文件中定义了几个var,然后我需要在几个.js文件中使用它
Alloy.js
var Temperaturas[];
var Confort;
Index.js
Alloy.Globals.Temperaturas[0]=25;
Alloy.Globals.Temperaturas[1]=23;
Alloy.Globals.Confort=21;
Programacion.js
Alloy.Globals.Temperaturas[0]=27;
Alloy.Globals.Temperaturas[1]=27;
Alloy.Globals.Confort=22;
问题是 var Confort 运行 很好,但 Temperaturas 不行
我该怎么做?
谢谢
不要在 alloy.js 上使用 var。
在 alloy.js
上将 var Temperaturas[]
更改为 Alloy.Globals.Temperaturas = []
我有一个带有 Appcelerator Titanium SDK 5.0 的旧应用程序,我需要安装 Titanium SDK 7.5。此应用 运行 Android。
在Alloy.js文件中定义了几个var,然后我需要在几个.js文件中使用它
Alloy.js
var Temperaturas[];
var Confort;
Index.js
Alloy.Globals.Temperaturas[0]=25;
Alloy.Globals.Temperaturas[1]=23;
Alloy.Globals.Confort=21;
Programacion.js
Alloy.Globals.Temperaturas[0]=27;
Alloy.Globals.Temperaturas[1]=27;
Alloy.Globals.Confort=22;
问题是 var Confort 运行 很好,但 Temperaturas 不行
我该怎么做?
谢谢
不要在 alloy.js 上使用 var。
在 alloy.js
上将var Temperaturas[]
更改为 Alloy.Globals.Temperaturas = []