有什么办法可以用jstl写评论吗?
Is there any way to write comments using jstl?
作为良好的编码习惯,我们不应在 jsp 中使用 scriptlet。
我想在我的 jsp 中为其他开发人员写评论,但不想在页面转换为 html.
时向客户显示它
有什么方法可以使用 jstl 或 El 编写以下代码吗?
<%
//for perfromance we redirect control to this jsp
//as this jsp don't load unused dom ,css , js
%>
我在互联网上找不到任何关于这个的东西?
没有,
你不能使用 EL 语言写评论,但是你可以使用 JSP 评论,这将对用户隐藏并且不需要 scriptlets
<%-- This is a Hidden Comment. --%>
作为良好的编码习惯,我们不应在 jsp 中使用 scriptlet。 我想在我的 jsp 中为其他开发人员写评论,但不想在页面转换为 html.
时向客户显示它有什么方法可以使用 jstl 或 El 编写以下代码吗?
<%
//for perfromance we redirect control to this jsp
//as this jsp don't load unused dom ,css , js
%>
我在互联网上找不到任何关于这个的东西?
没有,
你不能使用 EL 语言写评论,但是你可以使用 JSP 评论,这将对用户隐藏并且不需要 scriptlets
<%-- This is a Hidden Comment. --%>