gpt4 book ai didi

java - 如何访问 JavaScript 文件中的 Spring MVC 模型对象?

转载 作者:IT老高 更新时间:2023-10-28 13:55:40 24 4
gpt4 key购买 nike

我正在使用 spring 3 MVC,并且我有以下类(class)。

外部系统会使用以下 URL 调用我的应用程序:

http://somehost/root/param1/param2/param3

我有一个spring MVC Controller 方法如下:

public ModelAndView showPage(@PathVariable("param1") String paramOne, @PathVariable("param2") String paramTwo, @PathVariable("param3") String paramThree, HttpServletResponse response) {  
SomeModel model = new SomeModel(paramOne, paramTwo, paramThree);
return new ModelAndView("SomeJsp", "model", model);
}

SomeModel.java

public class SomeModel{
private String paramOne;
private String paramTwo;
private String paramThree;
//constructor
//setters and getters

}

SomeJsp.jsp

//In this Jsp i have a div with few elements. Div is not visible by default.
//This jsp has externalJavascript included.
//I enable div and set the data into div elements using jquery.
<script src="<c:url value="/resources/js/extjs.js" />" type="text/javascript"></script>

externalJs.js

$(document).ready(function() {

//Here i need the model returned using ModelAndView
//I can get data from model and set into div elements.


});

在外部java脚本文件中,是否可以获取模型内容?如果可能,我该怎么做?

谢谢!

最佳答案

JavaScript 在客户端运行。您的模型在客户端不存在,它仅在您呈现 .jsp 时存在于服务器端。

如果您希望模型中的数据可用于客户端代码(即 javascript),则需要将其存储在呈现页面的某个位置。例如,您可以使用您的 Jsp 编写 JavaScript,将您的模型分配给 JavaScript 变量。

更新:

一个简单的例子

<%-- SomeJsp.jsp --%>
<script>var paramOne =<c:out value="${paramOne}"/></script>

关于java - 如何访问 JavaScript 文件中的 Spring MVC 模型对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22508773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com