如何在标签 table (Spring MVC) 中换行?
how to make a new line in a tag table (Spring MVC)?
我无法将换行符放入发送到 .jspx 文件的 Java 字符串中。
我有一个 table 并且在一个单元格中我想显示从控制器接收到的字符串的内容:
|--------|
| aaa |
| bbb |
|--------|
相反,我得到这个:
|------------|
|aaa bbb |
|------------|
with 在 aaa 和 bbb 之间写了 br 标签(我必须在这里写它,因为否则这个网站在我的例子中做了一个换行..)
java控制器中的代码是:
String a = "aaa";
String b = "bbb";
String cell= a +"<br/>"+ b;
model.addAttribute("cell",cell);
我也试过(而不是 br 标签)“\n”“\r\n”和 "System.getProperty("line.separator”)”但没有成功
在 .jspx 中我得到:
<table:table>
<table:column id="firstCellId" property="cell">
...
<table:column id="secondCellId" property="another column">//others tr cell of no importance..
<table:column id="secondCellId" property="another column">//others tr cell of no importance..
</table:table>
有没有不使用 CSS 修改单元格的方法?
尝试封闭,
String cell= "<pre>"+a +"<br/>"+ b+"</pre>";
原因是:
htmlEscape="false"
在标签 table 中。我已将其删除,现在可以使用了。
我不知道如何结束这个问题。
我无法将换行符放入发送到 .jspx 文件的 Java 字符串中。 我有一个 table 并且在一个单元格中我想显示从控制器接收到的字符串的内容:
|--------|
| aaa |
| bbb |
|--------|
相反,我得到这个:
|------------|
|aaa bbb |
|------------|
with 在 aaa 和 bbb 之间写了 br 标签(我必须在这里写它,因为否则这个网站在我的例子中做了一个换行..)
java控制器中的代码是:
String a = "aaa";
String b = "bbb";
String cell= a +"<br/>"+ b;
model.addAttribute("cell",cell);
我也试过(而不是 br 标签)“\n”“\r\n”和 "System.getProperty("line.separator”)”但没有成功
在 .jspx 中我得到:
<table:table>
<table:column id="firstCellId" property="cell">
...
<table:column id="secondCellId" property="another column">//others tr cell of no importance..
<table:column id="secondCellId" property="another column">//others tr cell of no importance..
</table:table>
有没有不使用 CSS 修改单元格的方法?
尝试封闭,
String cell= "<pre>"+a +"<br/>"+ b+"</pre>";
原因是:
htmlEscape="false"
在标签 table 中。我已将其删除,现在可以使用了。
我不知道如何结束这个问题。