Bootstrap 与 Struts 2 兼容吗?

问题描述 投票:0回答:2

我正在使用 Bootstrap 进行 UI 开发。当我在其中使用 Struts 2 标签作为

<s:textfield>
时,完整的页面对齐被破坏了。当我用普通标签替换
s:
(Struts 2 标签)标签时,它工作正常。

我需要添加任何额外的罐子吗?

html twitter-bootstrap jsp struts2 struts2-bootstrap-plugin
2个回答
2
投票

解决方案 n.1

使用

simple
主题并自行编写符合 Bootstrap 的 HTML:

<constant name="struts.ui.theme" value="simple" />

解决方案 n.2

使用 Struts2 Boostrap 插件 (showcase) 和

bootstrap
主题,让它自动从 Struts 标签生成符合 Bootstrap 的 HTML:

<constant name="struts.ui.theme" value="bootstrap" />

2
投票

Struts 2 在渲染 JSP 页面的输出时使用主题。您可以在Struts 2 Themes中阅读有关主题的更多信息。要更改默认主题,请将其放入

struts.xml

<constant name="struts.ui.theme" value="simple"/>
© www.soinside.com 2019 - 2024. All rights reserved.