如何从javascript中激活<p:remotecommand>

时间:2017-10-05 15:02:02

标签: javascript jsf primefaces

当我尝试从javascript代码中执行远程命令时出现问题,总是在控制台中我有错误,ReferenceError:notificar未定义且我不知道为什么,这是我的代码,谢谢< / p>

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:p="http://primefaces.org/ui">
<h:head>
    <title>Facelet Title</title>
</h:head>
<h:body>
    Hello from Facelets
    <p:growl id="notifyGrowl" widgetVar="notifyGrowl" life="3000" showDetail="true"/>
    <h:form>
        <p:remoteCommand name="notificar" actionListener="#{remoteCommandView.execute}" update="notifyGrowl" />
    </h:form>

</h:body>
<script type="text/javascript">
    if (window.WebSocket) {
        var ws = new WebSocket("ws://localhost:8080/SEIPA3/push");

    } else {
        console.log(" Browser doesn't support it");
    }
    ws.onmessage = function (event) {

            notificar();
    };
</script>

1 个答案:

答案 0 :(得分:0)

伙计我解决了这个问题,发生的事情是我运行了我的应用程序,因为我在浏览器中,我通过输入他所在的地址直接从我的客户端访问我的客户端,检查源代码cliene的页面我意识到我仍然显示这样的primefaces代码,这是不对的,应该已经处理并显示为纯html,所以从我的索引中放一个按钮将我发送给客户端,所以现在,在进行检查时,我看到已经处理好的html代码,一切都进展顺利。谢谢。