我收到了错误/警告,但为什么这么人?以及如何解决它,已经是第3天无法应对此错误 多数民众赞成我的错误:
jquery.js?ln = primefaces& v = 5.0:25同步XMLHttpRequest上 主线程因其不利影响而被弃用 最终用户的体验。如需更多帮助,请检查 https://xhr.spec.whatwg.org/
这是我的index.xhtml
:
<?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>
<h:link outcome="create" value="Insert a new diver"></h:link>
<h:form id="myForm">
<p:dataTable value="#{diverController.lst}" var="d" scrollable="true" scrollHeight="500" style="width:800px;margin-left: auto;">
<p:column headerText="Id" >
#{d.id}
</p:column>
<p:column headerText="Name" >
#{d.name}
</p:column>
<p:column headerText="Num">
#{d.num}
</p:column>
<p:column headerText="Status">
#{d.status}
</p:column>
<p:column headerText="Lat">
#{d.lat}
</p:column>
<p:column headerText="Lot">
#{d.lot}
</p:column>
<p:column headerText="Action">
<h:commandLink value ="Remove"
action="#{diverController.remove(d)}"
onclick="return confirm('Are you Sure')"></h:commandLink>||
<h:commandLink value="Edit"
action="#{diverController.edit(d)}"></h:commandLink>
</p:column>
<p:column headerText="Check" >
<p:commandButton id="mButn" class="Bzazaza" ></p:commandButton>
</p:column>
</p:dataTable>
<p:poll update="myForm" interval="10" ></p:poll>
</h:form>
<h:outputScript library="js" name="example.js"></h:outputScript>
</h:body>
</html>
真的需要你的帮助谢谢大家