我目前正在使用PrimeFaces 5.2。我需要将日期时间字符串格式化为p:calendar标记内的模式,但它仍然会在日期和时间之间添加空格。
这是我的.xhtml文件中的代码段
<p:calendar placeholder="example: 20152008191300"
id="datetime"
value="#{parameter.value}"
pattern="yyyyMMddhhmmss"
styleClass="dateTimeField"/>
然后当我选择时间和日期时,这是文本框中的输出 20150820 121100
有人可以帮我删除自动插入的空间吗?
答案 0 :(得分:0)
Primefaces日历模式中的字段“小时”由大写H
表示,您使用的是小写h
:http://primefaces.org/showcase/ui/input/calendar.xhtml
我最好的猜测是,这可能会以某种方式造成这个问题。