您是否注意到一些 JSP 与 WebSphere 不兼容?

发布于 2024-07-09 04:26:23 字数 189 浏览 7 评论 0原文

当我们编写 Javascript 表达式时:

expression < <%=variableJsp%> 

双“<” 似乎是一个问题,JSP 没有被解释?

是否是其他服务器的错误不应该接受这种类型的表达? 还是 WebSphere 的 bug?

When we write in a Javascript expression :

expression < <%=variableJsp%> 

the double "<" seems to be a problem and the JSP is not interpreted ?

Is it a fault of the other servers that should not accept this type of expression ? Or WebSphere that bugs ?

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

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

发布评论

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

评论(2

掌心的温暖 2024-07-16 04:26:23

您的小代码示例看起来像是我们做的没有问题的事情。

尝试创建一个 JSP 来说明问题,而不是其他。 要么从头开始创建新的,要么删除与问题无关的所有内容。

您很可能会发现错误不在您的代码示例中。 但是,如果您可以制作一个小的 JSP 文件(几行)来说明问题,请向我们展示。

Your small code-sample looks like something we do without problems.

Try creating a JSP that illustrates the problem, and nothing else. Either create a new from scratch, or remove everything not relevant to the problem.

Chances are, you will find that the error is not in your code-sample. But if you can make a small JSP-file (a few lines) that illustrates the problem, please show it to us.

弄潮 2024-07-16 04:26:23

我发现在 jsp 页面上内联 javascript 通常是一个坏主意。您的问题只是将 javascript 函数设置为外部的原因之一。

虽然我不了解websphere,但我在其他容器上也发生过这种情况。

如果您坚持保持内联,您可能可以使用

expression < <%=variableJsp%>

I find it generally a bad idea to inline javascript on jsp pages.Your problem is only one of the reasons to make javascript functions external.

Although I do not know websphere, this has happened to me on other containers.

If you insist on keeping it inline, you can probably use

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