3

这是我的视图片段,当点击超链接时,我需要将两个名为 solicitudId 和 detailId 的参数发送到控制器中的一个方法

<tr>
    <td>${user.loginName}</td>
    <td>${user.phone}</td>
    <td>${user.address}</td>
    <td><a href="/enable?solicitudId=${user.solicitudId}&detailId=${user.detail}">Enable</a></td>
tr>

//控制器

@RequestMapping(value="/enable", method=RequestMethod.GET)
    public String enableUser(Model model){
        try{
            //How should I get the values from the parameters solicitudId and detailId?
        }catch(Exception e){
            e.printStackTrace();
        }
        return  null;
}

提前致谢!

4

2 回答 2

5
@RequestMapping(value="/enable", method=RequestMethod.GET)
    public String enableUser( @RequestParam("solicitudId") int solicitudId ,   
                              @RequestParam("detailId") int detailId, Model model){
        try{
            //do whatever you want with detailId and solicitudId
        }catch(Exception e){
            e.printStackTrace();
        }
        return  null;
}

参考: http ://static.springsource.org/spring/docs/3.0.0.M3/spring-framework-reference/html/ch16s11.html

于 2012-04-10T16:09:37.527 回答
0

您需要一个接受 HTTP 请求对象的控制器方法。参数将作为名称/值对作为 GET 请求的一部分。像这样:

Spring MVC 控制器 HTTP GET 查询参数

于 2012-04-10T16:06:05.360 回答