<逻辑:迭代问题

发布于 2024-10-17 02:57:00 字数 563 浏览 1 评论 0 原文

我需要从表中提取所有消息并显示在 jsp 页面上。我有如下代码: 我将消息列表存储为: SimpleStringVO 字符串值:欢迎来到 XYZ Tool 主页。 ,SimpleStringVO 字符串值: 在这里您可以输入您的帐号,SimpleStringVO 字符串值: ,SimpleStringVO 字符串值: 谢谢

当我尝试在 jsp 页面中显示此内容时,该消息在存储时未格式化。 “谢谢”紧接在第二根弦之后。我需要显示空格字符串,然后显示“谢谢”字符串。 (第三个字符串只有空格)我在 Jsp 中的代码是这样的:

  <td><logic:iterate name="AllNewsCashe" id="news" type="com.fw.valueobject.SimpleStringVO"> 
          <bean:write name="news" property="stringValue"/> 
          </logic:iterate> 
        </td>        

如何在不格式化的情况下显示此消息?

I need to pull all teh messages from a table and display on the jsp page. I have the code like below:
I have the list of messages stored as :
SimpleStringVO string value: Welcome to the XYZ Tool homepage. ,SimpleStringVO string value: Here you can enter your account number ,SimpleStringVO string value: ,SimpleStringVO string value: thank you

When I tried to display this in jsp page, the message is not formated as it is stored. "thank you" comes immediately after the 2nd string. I need to display the space string and then the "thank you" string. (3rd string has just spaces) My code in Jsp is like this :

  <td><logic:iterate name="AllNewsCashe" id="news" type="com.fw.valueobject.SimpleStringVO"> 
          <bean:write name="news" property="stringValue"/> 
          </logic:iterate> 
        </td>        

how to display thise messages as it is without formating ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

檐上三寸雪 2024-10-24 02:57:00

如果您需要在 HTML 中强制使用空格,则需要将其存储为   而不是 " "。但是,由于您使用的是 bean:write 标记,因此您可以使用 filter 属性来保留 " ":-

<bean:write name="news" property="stringValue" filter="false" /> 

这是 Struts 文档过滤:-

如果该属性设置为 true,则
呈现的属性值将是
过滤出以下字符
HTML 中敏感的内容,以及任何此类内容
字符将被替换为他们的
实体等价物。

If you need to force a space in HTML, you will need to store it as   instead of " ". However, since are you using bean:write tag, you can probably use filter property to retain " ":-

<bean:write name="news" property="stringValue" filter="false" /> 

Here's the description of filter from Struts documentation:-

If this attribute is set to true, the
rendered property value will be
filtered for characters that are
sensitive in HTML, and any such
characters will be replaced by their
entity equivalents.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文