我正在尝试在我的自定义插件中的选择菜单中添加选项。我希望从我拥有的数组中获取这些选项,并使用forearch或者创建这些选项。我怎么能这样做?
答案 0 :(得分:0)
您能否向我们展示生成选择框的代码?如果我猜对了,你可以做一些像
这样的事情var things = [];
var your = ["Derpy","Fluttershy","Applejack"];
for(var i = 0; i < your.length; i++) {
// The two values used to separate actual and display values if needed
things[i] = [your[i],your[i]];
}
// snip snip
tab.add({
type: 'select',
label: 'myAwesomePonySelector',
id: 'myAwesomePonySelector',
items : things
// your other definitions, like onShow and commit
});
我希望这会有所帮助。