我是Spring MVC框架的新手。我陷入了困境。我想从我当前的jsp页面显示另一个jsp页面。因为我在客户端使用ajax。我在下面分享我的代码。请帮我解决这个问题。 谢谢,
<li>
<a href="" onclick="displayEditProfile();" target="_blank">
<i class="glyphicon glyphicon-edit"></i>
Edit My Profile </a>
</li>
我的Javascript函数是:
function displayEditProfile(){
$.ajax({
url: '/HappyWorld/displayEditProfile.do',
data:{
//sharePost : $('#userPost').val(),
//"password":$('#passwordId').val(),
time : new Date(),
},
type: 'GET',
dataType: 'text',
success: function(data) {
},
error: function(xhr, textStatus, errorThrown) {
alert(xhr+" "+textStatus+" "+errorThrown);
}
});
}
我的控制器是:
@RequestMapping(value="/displayEditProfile", method = RequestMethod.GET)
@ResponseBody
public ModelAndView displayEditProfile(HttpServletRequest request,HttpServletResponse response) {
System.out.println(" in call.");
return new ModelAndView("edit_user_profile");
}
我的视图的xml配置是:
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/jsp/" p:suffix=".jsp" />
答案 0 :(得分:1)
您不需要ajax来重定向。您可以直接使用
<a href="displayEditProfile" target="_blank">
<i class="glyphicon glyphicon-edit"></i>
Edit My Profile </a>
如果您想传递一些参数,可以使用action = displayEditProfile提交表单并使用表单字段。
<form action="displayEditProfile" >
答案 1 :(得分:0)
你必须删除@ResponseBody。