开发者

how to update global variable in titanium?

开发者 https://www.devze.com 2023-04-07 20:16 出处:网络
i\'m having some problem in updating my array which is global by the way开发者_StackOverflow中文版.

i'm having some problem in updating my array which is global by the way开发者_StackOverflow中文版.

here is my code:

Ti.App.dinercolor=["#FF5A00","#007EFF","#dccdc0","#C2FF95","#A700FD","#dccdc0","#dccdc0","#5F9EA0","#dccdc0","#dccdc0","#22A000","#DCCDC0","#dccdc0","#FF003C","#dccdc0","#FF003C","#dccdc0","#22A000","#dccdc0","#FFF191"];

thats my global array which i can access data from it from anywhere in the application.

the problem comes when i want to update the array like:

for(var q=0; q<Ti.App.dinercolor.length; q++){Ti.App.dinercolor[q] = '#dccdc0';}    

so, the array i was expecting after the operation thats done is something like this:

Ti.App.dinercolor=["#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0","#dccdc0"];

but somehow i'm getting the same array with out updating,

Ti.App.dinercolor=["#FF5A00","#007EFF","#dccdc0","#C2FF95","#A700FD","#dccdc0","#dccdc0","#5F9EA0","#dccdc0","#dccdc0","#22A000","#DCCDC0","#dccdc0","#FF003C","#dccdc0","#FF003C","#dccdc0","#22A000","#dccdc0","#FFF191"];

please help me out, i have no idea what i'm doing wrong here,

Thank you,,


Your code is correct, but you shouldn't extend the Ti object as unexpected things like this will happen. Create your own object and it will work.

myObj = {};
myObj.dinercolor = [];

And so on.

It is recommended you keep your app in a single context so you will be able to access the object from anywhere. Check out the forging titanium video series for some best practices.


I agree with Jeff, however if you want the above approach to work you will need to update the whole array, you cannot just update elements.

So read the array out into a new variable, update the specific elements and then set the property again


In App.js:

Ti.App.my_variable = 0;

In some_other_page.js:

Ti.App.my_variable = 101;

In yet_another_page.js:

alert( Ti.App.my_variable );

This will alert 101 !!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号