我的Web UI具有搜索项目源的潜在路径的功能,这可能会导致多个选项。我正在尝试收集它们,然后使用inputType select抛出bootbox.confirm,以便用户可以选择正确的路径。我希望能够将动态路径列表传递给bootbox,而不是硬编码。例如:
$scope.promptSelectSourcepath = function(finalResult) {
bootbox.prompt({
size: "medium",
message: "Please select your project sourcepath from the following list",
inputType: 'select',
inputOptions: [
{
text: 'text from the dynamic array',
value: 'value from the dynamic array',
}
],
我想我在确认启动箱中寻找某种类型的ng-repeat功能。这可能吗?
答案 0 :(得分:0)
实际上,虽然它不是很漂亮我通过让REST控制器传回一个HashMaps的ArrayList来确定一种方法来实现这一点 - 当我将inputOptions字段设置为返回的数组时,bootbox能够解释它