我在 JSF 应用程序中集成了jQuery Terminal Emulator,目的是在 ManagedBean 中而不是在 jQuery 中处理命令。我已成功向 bean 发送命令,然后将结果设置为回调参数,但我不知道如何在终端中显示此结果。
以下是相关的代码片段:
终端.xhtml
<h:form>
<p:remoteCommand name="sendRemoteCommand"
action="#{processCommand.rcAction}"
oncomplete="handleComplete(xhr, status, args)" />
</h:form>
<h:panelGroup id="term_demo" layout="block" />
<h:outputScript library="primefaces" name="jquery/jquery.js"
target="body" />
<h:outputScript library="js" name="jquery.terminal-min.js" />
<h:outputScript target="body">
$(document).ready(function() {
$('#term_demo').terminal(function(command, term) {
if (command !== '') {
try {
var result = sendRemoteCommand([ {
name : 'command',
value : command
} ]);
if (result !== undefined) {
term.echo(new String(result));
}
} catch (e) {
term.error(new String(e));
}
} else {
term.echo('');
}
}, {
greetings : 'Javascript Interpreter',
name : 'js_demo',
height : 200,
prompt : 'js> '
});
});
function handleComplete(xhr, status, args) {
// Need to find a way to return args.result
// to the terminal!
}
</h:outputScript>
进程命令.java
@ManagedBean
@RequestScoped
public class ProcessCommand {
private String command;
public void rcAction() {
FacesContext context = FacesContext.getCurrentInstance();
Map map = context.getExternalContext().getRequestParameterMap();
command = (String) map.get("command");
RequestContext requestContext = RequestContext.getCurrentInstance();
requestContext.addCallbackParam("result", command + "_ok");
}
在 JS 函数handleComplete()
中,变量args.result
被正确设置为“[command]_ok”,我想返回它,以便sendRemoteCommand
在 Primefaces 的<p:remoteCommand>
标签中指定的 jQuery 终端函数调用时,它能够得到返回的结果后者
提前谢谢了!
编辑:我正在使用 JSF 2.0(Mojarra 2.2、Glassfish 4、Primefaces 4.0)