在 FF3.5 中使用 strut

发布于 2024-10-13 05:50:00 字数 892 浏览 2 评论 0原文

我使用 struts2 创建了一个 Web 应用程序,它在 firefox 3.6 中运行良好,但在 3.5 中运行不佳
使用的库文件:

Struts 2 core - commons-io-1.3.2.jar  
Struts 2 core - commons-logging-1.1.jar  
Struts 2 core - commons-fileupload-1.2.1.jar  
Struts 2 core - freemarker-2.3.13.jar  
Struts 2 core - sturts2-core-2.1.6.jar  
Struts 2 core - ognl-2.6.11.jar  
Struts 2 core - xwork-2.1.2.jar  
Struts 2 core - log4j-1.2.9.jar  
xwork-core-2.1.6.jar  
struts2-jquery-plugin-2.3.0.jar  
struts2-json-plugin-2.1.8.1.jar

使用的服务器 - Glassfish V3
我还使用过jquery javascript库v1.4.2

任何人都可以帮我找出为什么它不起作用以及我应该做什么才能使它在FF3.5?
我包含了两个文件:

<%@taglib uri="/struts-tags" prefix="s"%><br>
<%@taglib prefix="sj" uri="/struts-jquery-tags"%><br>   

只有我的 s: 标签有效,但 sj: 标签无效

I had created a web application using struts2 and it works fine in firefox 3.6 but not in 3.5
Library files used:

Struts 2 core - commons-io-1.3.2.jar  
Struts 2 core - commons-logging-1.1.jar  
Struts 2 core - commons-fileupload-1.2.1.jar  
Struts 2 core - freemarker-2.3.13.jar  
Struts 2 core - sturts2-core-2.1.6.jar  
Struts 2 core - ognl-2.6.11.jar  
Struts 2 core - xwork-2.1.2.jar  
Struts 2 core - log4j-1.2.9.jar  
xwork-core-2.1.6.jar  
struts2-jquery-plugin-2.3.0.jar  
struts2-json-plugin-2.1.8.1.jar

Server used - Glassfish V3
Also I had used jquery javascript library v1.4.2

Can anyone please help me to find why its not working and what should i do to make it work in FF3.5?
I had included two files:

<%@taglib uri="/struts-tags" prefix="s"%><br>
<%@taglib prefix="sj" uri="/struts-jquery-tags"%><br>   

Only my s: tags are working but not sj: tags

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

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

发布评论

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

评论(1

高跟鞋的旋律 2024-10-20 05:50:00

只是在黑暗中进行疯狂的尝试,但我见过的所有 Struts 示例都以不同的顺序(uri 位于前缀之前)来标记库的属性:

<%@taglib uri="/struts-jquery-tags" prefix="sj" %>

也许它希望以特定的顺序解析属性?如果您发布了 Web 容器的一些日志/输出,将会有所帮助。

Just a wild stab in the dark, but all the Struts examples I've seen have the attributes for the taglibs in a different order (uri ahead of prefix):

<%@taglib uri="/struts-jquery-tags" prefix="sj" %>

Maybe it expects to parse the attributes in a specific order? It would help if you'd posted some of the logs / output from your web container.

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