Eclipse:格式化嵌入在 JSP 中的 JavaScript 代码片段
在 eclipse 中的 JSP 编辑器上按 Ctrl+Shift+F
只会格式化 html 标签和 jsp 标签内的代码。
但是我的 JSP 文件使用
我的问题是:
是否有任何插件或任何其他方式来格式化这些嵌入的 JavaScript 以及 HTML/JSP 代码以使其可读?
如果有人已经找到了一种方法来做到这一点,请告诉我。
Pressing Ctrl+Shift+F
on a JSP editor in eclipse only formats the codes within html tags and jsp tags.
But my JSP file has a lots of JavaScript( unformatted) embedded using <script> </script>
. So it very difficult to read the JavaScript code.
My Question is:
Is there any plugin or any other way to format those embedded JavaScript along with the HTML/JSP codes to make them readable?
If anyone has already figured out a way to do this, please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,似乎没有这样的方法来格式化混合到jsp中的javascript代码。
无论如何,您可以使用以下简单的技巧。
Well, it seems there is no such way to Format the javascript code mixed into jsp.
Anyway, you can use following simple trick.
首先,确认上面kirilloid提供的要点:避免在HTML/JSP文件中使用JS。
其次,看看SO讨论 有没有好的JSP Eclipse 编辑器? 了解更多信息。简短的回答:Eclipse Web Tools Project (WTP) 将格式化 JSP 中的 JavaScript。
First, affirming the important point provided by kirilloid above: avoid JS in HTML/JSP files.
Second, look at the SO discussion Is there a good JSP editor for Eclipse? for further information. Short answer: the Eclipse Web Tools Project (WTP) will format JavaScript in your JSPs.