0

有人可以让我知道如何从 JSP 访问模型。

这是我的控制器:

@RequestMapping(value = "/systemById", method = RequestMethod.GET)
public void getSystemById(Model model, OutputStream outputStream) throws IOException {
     model.addAttribute("fSystemName", "Test name");
     name = system.getName();
} 

JSP代码:

$('#uINewsSystemList').change(function() {
    $.get("/application/systemById");
);  

<form:form id="systemForm" commandName="systemForm">
<tr>
    <td valign="top"><form:input path="fSystemName" value="${fSystemName}" size="20" />&nbsp;</td>                      
</tr>

将字符串添加到模型后,我无法刷新表单。有任何想法吗?

4

1 回答 1

3

当您基于用户交互进行 ajax 调用时,您调用的流程与您用于呈现页面的原始 JSP 无关。

您可以让 getSystemById 方法完全重新呈现页面(可能通过表单提交/POST),或者您可以更改示例代码以实际返回必要的数据以通过 JavaScript 进行更改。由于您提到您正在寻找动态更新,因此更改可能如下所示:

@RequestMapping(value = "/systemById/${id}", method = RequestMethod.GET)
public String getSystemById(@PathVariable String id) throws IOException {
     //lookup new system data by id
     Model model = someService.getModelById(id);
     return model.getName(); //you can return more than just name, but then you will need some sort of conversion to handle that data (json, xml, etc.)
} 

客户端 ajax 调用将需要设置为具有成功功能,您可以在其中使用返回的数据来更新 ui。

$('#uINewsSystemList').change(function() {
    var id = $(this).val();
    $.get("/application/systemById/" + id, function(returnedData){
        //use returnedData to refresh the ui.
        $('selectorForSystemNameField').val(returnedData);
    });
);  
于 2013-03-06T15:47:11.103 回答