Tiles 不会解析 Struts 标签

发布于 2024-07-16 18:11:51 字数 60 浏览 7 评论 0原文

我尝试使用tile,但似乎它没有解析Struts标签,它直接输出它们,例如而不是... 似乎有什么问题?

I'm tried using tiles but it seems that it's not parsing the Struts tags, It outputs them directly e.g. instead of ...
What seems to be the problem?

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

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

发布评论

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

评论(2

冬天的雪花 2024-07-23 18:11:51

您需要在每个 JSP 文件中包含 taglib 库标头,无论它是否是一个tile:

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

等等...

如果没有这个,标签将不会被解析。

You need to include the taglib library header in each JSP file, regardless of whether it's a tile or not:

<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

etc...

Without this the tags will not be parsed.

孤独患者 2024-07-23 18:11:51

我在 jsp 中看到过带有 netsed 标记的评估顺序事物 - 您可能会遇到诸如

 <t:x name="<c:out ... 

Can you post code and output? 之类的问题。 (我猜你的代码被解析了,因为你没有使用漂亮的二进制徽标按钮)

I've seen evaluation-order things with netsed tags in jsp's - you're likely to run into problems with things like

 <t:x name="<c:out ... 

Can you post code and output? (I'm guessing you're code got parsed out because you didn't use the nice binary-logo button)

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