1、关于bean:write标签中无法换行的问题
描述:显示的内容比较长,需要换行,但是即使在内容中加入<br>也无法在页面中呈现效果
解决方法:
<bean:write name="content" property="show_content"/>
改成下面的形式,增加 filter="false"
<bean:write name="content" filter="false" property="show_content"/>
filter="false"的作用是提醒<bean:write>标签不要过滤html标签,filter的值默认是true
2、关于bean:write标签中日期类型的值格式化的问题
描述:从数据库取得的是日期型的变量,无法将其显示为通常见到的时间格式
具体用法如下:
(1)在资源文件里添加如下键值:
global.formattime = yyyyMMdd HH:mm:ss //这里的格式可以设置成其他样式
(2)在内容呈现的页面中,采用如下方式
<bean:write name="content" property="time" formatKey="global.formattime" />
或者
<bean:write name="content" property="time" format="yyyyMMdd HH:mm:ss" />
上面的第二种方式不用在资源文件中设置任何键值
描述:显示的内容比较长,需要换行,但是即使在内容中加入<br>也无法在页面中呈现效果
解决方法:
<bean:write name="content" property="show_content"/>
改成下面的形式,增加 filter="false"
<bean:write name="content" filter="false" property="show_content"/>
filter="false"的作用是提醒<bean:write>标签不要过滤html标签,filter的值默认是true
2、关于bean:write标签中日期类型的值格式化的问题
描述:从数据库取得的是日期型的变量,无法将其显示为通常见到的时间格式
具体用法如下:
(1)在资源文件里添加如下键值:
global.formattime = yyyyMMdd HH:mm:ss //这里的格式可以设置成其他样式
(2)在内容呈现的页面中,采用如下方式
<bean:write name="content" property="time" formatKey="global.formattime" />
或者
<bean:write name="content" property="time" format="yyyyMMdd HH:mm:ss" />
上面的第二种方式不用在资源文件中设置任何键值