在breef:
我在函数中创建了一个菜单对象,但我无法在主脚本中访问该菜单对象。
完整说明:
在函数createMyMenu()中,我创建了一个包含一些项目的菜单对象,并显示了菜单。这很好用,用户可以使用Pebble智能手表上的按钮在菜单中上下移动。
问题是用户无法选择任何项目,只需在菜单中导航即可。
如果我在主脚本中创建菜单对象,我(当然)工作正常,但如果我在函数中创建菜单对象,则用户无法选择任何菜单项。
问题:如何在函数中创建菜单,然后在主脚本中使用该菜单对象,就像在主脚本中创建菜单一样?
代码:
function createMyMenu()
{
// Some code to create the menu object myMenu. Works fine.
myMenu.show(); // Also works fine, the menu and it contents are displayed.
return myMenu; // No errors
}
脚本
mainMenu = createMyMenu(); // Create the menu.
mainMenu.on('select', function(e) // This does not seem to be executed.
{
// Code to execute when the user selects a menu item.
}
答案 0 :(得分:0)
我自己解决了这个问题,这里有一些工作代码:
var UI = require('ui');
function createMyMenu()
{
// Some code to create the menu object myMenu. Works fine.
var myMenu = new UI.Menu({
backgroundColor: 'black',
textColor: 'white',
highlightBackgroundColor: 'white',
highlightTextColor: 'black',
sections: [{
title: 'My Menu',
items: [{
title: 'First Item',
subtitle: 'first subtitle'
}, {
title: 'second Item',
subtitle: 'Second subtitle'
}, {
title: 'Third Item',
subtitle: 'Third subtitle'
}]
}]
});
myMenu.show(); // Also works fine, the menu and it contents are displayed.
return myMenu; // No errors
}
//***** THE SCRIPT ******
var mainMenu = createMyMenu(); // Create the menu.
mainMenu.on('select', function(e) // This does not seem to be executed.
{
// Code to execute when the user selects a menu item.
console.log('Button pressed');
console.log('Selected item #' + e.itemIndex + ' of section #' + e.sectionIndex);
console.log('The item is titled "' + e.item.title + '"');
});