当ajax = false charset不起作用时的Primefaces

时间:2014-08-03 20:08:41

标签: ajax jsf primefaces encoding character-encoding

使用p:commandbutton更新值时遇到问题。   当在p:commandButton中,我设置ajax =“true”一切都很好,但是当我设置ajax =“false”时,p:inputText中的值不编码,在下一页显示我ÙرÛÙر Û。或者当我想将数据发送到mysql数据库时。我正在使用Filter,但我的问题无法解决。

请帮助我。 感谢

<?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">
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <h:head>
        <title>Facelet Title</title>
    </h:head>
    <h:body>
        <h:form>
            <p:inputText value="#{bean.name}" />
            <p:commandButton value="check" ajax="false" action="page2"/>
        </h:form>
    </h:body>
</html>

0 个答案:

没有答案