如何强制 Weblogic 打印“null”在 jsp 文件中,对于值为 null 的变量,而不是空字符串“”?
假设我在 jsp 文件中有 JS 代码,例如:
<%
String test = null;
%>
var test = <%=test%>;
使用 Tomcat 和 Websphere,生成的 JS 将是:
var test = null;
但是,在 Weblogic 中它将是:
var test = ;
因此,使用 weblogic 时存在语法错误。
我知道使用条件解决这个问题相当容易;某行如果 test==null 打印“null”,否则打印 test。然而,我正在寻找的是某种可以改变这种行为的服务器设置。
我已经编写了代码,所以我不想搜索 JavaScript 中变量可能为 null 的每个位置。
谢谢, 格雷
Suppose I have JS code inside a jsp files, such as this:
<%
String test = null;
%>
var test = <%=test%>;
With Tomcat and Websphere the resulting JS will be:
var test = null;
However, in Weblogic it will be:
var test = ;
So with weblogic there is a syntax error.
I know this is fairly easy problem to solve using a condition; somehthing line if test==null print "null" otherwise print test. However, what I am looking for is some kind of server setting that can change this behavior.
I alreay have the code written, so I don't want to search for every place a variable going into JavaScript might be null.
Thanks,
Grae
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道你是否可以通过服务器范围的设置来控制它,但是你可以通过 weblogic.xml 配置文件中的设置来控制它:
这需要进入你的网站旁边的 WebContent/WEB-INF 目录.xml 文件。
请注意,默认值为 true,因此您没有看到空值很奇怪。也许这已经在其他地方设置为 false。尝试在 weblogic.xml 中将其设置为 true,因为它将覆盖任何其他设置。
请注意,如果您安装了 Oracle Enterprise Pack for Eclipse 以从 Eclipse 部署到 WLS,您将获得一个很好的编辑器来帮助您编辑 weblogic.xml 文件。在 JSP -> 下查找此设置内容大纲中的输出选项。
I don't know if you can control this via server-wide settings, but you can control it war-wide via a setting in the weblogic.xml configuration file:
This needs to go in WebContent/WEB-INF directory next to your web.xml file.
Note that the default is true, so it is odd that you are not seeing nulls. Perhaps this is already set to false elsewhere. Try setting it to true in weblogic.xml as it will override any other setting.
Note that if you have Oracle Enterprise Pack for Eclipse installed for deploying to WLS from Eclipse, you will get a nice editor to help you edit weblogic.xml file. Look for this setting under JSP -> Output Options in the content outline.
如果 weblogic 在 JSP 表达式中测试 null,您可以通过执行以下操作来防止这种情况:
这应该打印
var test = null;
。If weblogic tests for null in a JSP expression, you can prevent this by doing:
This should print
var test = null;
.