Eclipse:格式化嵌入在 JSP 中的 JavaScript 代码片段

发布于 2024-10-16 03:05:50 字数 353 浏览 1 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

孤独岁月 2024-10-23 03:05:50

嗯,似乎没有这样的方法来格式化混合到jsp中的javascript代码。

无论如何,您可以使用以下简单的技巧。

  • 将 javascript 代码提取到 .js 文件中,在那里对其进行格式化,然后将格式化的代码复制回主文件。

Well, it seems there is no such way to Format the javascript code mixed into jsp.

Anyway, you can use following simple trick.

  • extract the javascript code into a .js file, format it there and copy the formatted code back to main file.
心碎的声音 2024-10-23 03:05:50

首先,确认上面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.

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