需要在 JSP 中调用确认框,以下是我在控制器中的代码,
if(!(nesting)){
bla.add("Do you want to Load anyway?");
context.getFlowScope().put("bla", bla);
context.getFlowScope().put("uldSelector", uldSelector);
return;
}
h = uloService.processDomBatch(histInfo, dl, items);
以上会将错误添加到 flowscope 并返回,但是,我想调用一个确认框,然后根据是/否,我应该继续...
有没有办法做到这一点?..任何帮助都非常感谢!谢谢!