使用Spring MVC和freemarker作为视图技术,如何将数据从服务器端传递到javascript?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你好,我找到了一些简单的工作。我在隐藏字段中传递了它并使用
实际工作正常 访问他 val
谢谢
Hello I found a little simple work arround. I passed it in a hidden field and access he val using
working fine actually
thanks