-3

我是编程界的新手。我正在使用 Titanium,我想要一个按钮,当我单击它时,它会返回主窗口。显然,该按钮将在另一个窗口中。

我试过win2.open()and win2.show(),但它不起作用。有任何想法吗?

4

2 回答 2

0

使用钛导航控制器

https://github.com/vuinguyen/Ti-Navigation-Controller

它会给你上一个和主窗口的按钮

于 2013-09-25T07:41:23.197 回答
0

雅克,

如果您在第二个窗口中,只需在第二个窗口中的按钮单击事件时关闭该窗口。在第二个窗口中尝试以下操作

//I'm assuming that you have came from window1 to window2
//and you have a button btnHome at window 2 used to navigate back to home page

var thisWindow = Ti.UI.currentWindow;
btnHome.addEventListener('click', function(e){
    thisWindow.close(); //Will close the current window and display the previous one
});

有一个类似的问题用于在窗口之间导航。浏览Titanium Mobile:无法在页面之间导航

您也可以使用以下链接作为参考

  1. http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.Window-property-url
  2. http://docs.appcelerator.com/titanium/latest/#!/api/Global-method-require
于 2013-09-25T03:57:49.950 回答