无法将任何标签库添加到 JavaScript 文件

发布于 2024-12-27 20:24:58 字数 213 浏览 0 评论 0原文

嘿,我正在尝试将 taglib 添加

到我的 javascript 文件中,但它无法编译。是否可以在 javascript 文件中使用 spring:message 类?

当 javascript 在 JSP 中时它可以工作,而当它在 Javascript 文件中时则不能。我想我无法在 JavaScript 中使用 spring 消息。无论如何要做吗?

多谢

Hey I am trying to add a taglib for example

to my javascript file however it doesn't compile. Is it possible to use spring:message class in javascript file?

It works when the javascript is in JSP when it is in Javascript file it doesn't. I guess there is no way I can use spring messages in JavaScript. Anyway to do it?

Thanks alot

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

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

发布评论

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

评论(1

江城子 2025-01-03 20:24:58

JSP由特殊的jsp编译器编译为java代码,然后编译为字节码。在编译过程中,会评估 taglib。这不会发生在您的 JavaScript 文件中,这就是您不能在 jsp 之外使用 taglib 的原因。

The JSP is compiled to a java code by a special jsp compiler, that is afterwards comipled to bytecode. During th compile process the taglib is evaluated. This does not happen to your JavaScript file and that is the reason why you can not use a taglib outside of a jsp.

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