无法将任何标签库添加到 JavaScript 文件
嘿,我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.