使用Spring MVC和freemarker作为视图技术,如何将数据从服务器端传递到javascript?

发布于 2025-01-08 01:46:41 字数 300 浏览 0 评论 0原文

我正在使用 spring 3 MVC 开发一个项目,我需要从 El 元素到 javascript 的一些值。由于我使用 freemarker,我一直无法找到一种方法来做到这一点。 我希望能够做这样的事情:

<script type="text/javascript">
  var Id = <%= ${id} %> // something of a sort.this is just to illustrate
</script>

有人可以解释一下我的问题吗?感谢您阅读本文。

I'm working on a project with spring 3 MVC and I have the need to some values from El element to javascript. Since I'm using freemarker I haven't been able to find a way to do that.
I would like to be able to do something like this:

<script type="text/javascript">
  var Id = <%= ${id} %> // something of a sort.this is just to illustrate
</script>

Can any one shed a light on my issue please? Thanks for reading this.

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

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

发布评论

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

评论(1

魄砕の薆 2025-01-15 01:46:41

你好,我找到了一些简单的工作。我在隐藏字段中传递了它并使用

jQuery("#id").val()

实际工作正常 访问他 val
谢谢

Hello I found a little simple work arround. I passed it in a hidden field and access he val using

jQuery("#id").val()

working fine actually
thanks

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