我正在使用 ajax 调用来提交我的表单,
$.ajax({
url: $("#"+formId).attr('action'),
type: "POST",
data: $("#"+formId).serialize(),
success: function(response){
console.log(response);
}
});
我在表单动作方法中返回了一个字符串值(这个方法是Spring注解)。但是这里一切正常(我的表单也提交得很好),除了返回值。它返回 Xmldocumnet 作为该响应中的响应,也未找到字符串值。我怎样才能在这里得到我的原始返回值..