我如何访问在函数中初始化的变量,但是 main.name 给了我一个空值,我知道该值是在函数中初始化的,或者在 main 上,但不在提要中!!这是我的例子,
var main = Titanium.UI.createWindow();
var feed = Titanium.UI.createWindow({
title:'feeds',
url:'main_windows/feeds.js',
barImage:'bg_content.gif',
username:main.name //im trying too access this varibale from main.
});
Ti.App.addEventListener('grantEntrance',function(event)
{
main.title ='Welcome'+event.username;
main.url = 'main_windows/main.js';
main.name = event.username; // this is where the varibale is intialised
main.email = event.email;
main.barImage='bg_content.gif';
});
对不起,如果这似乎是一个愚蠢的问题,但我是 javascript 的新手,所以告诉我删除它。我想知道你是否可以把它变成一个 gloab 什么的。