Я пытаюсь получить html-страницу из весенней загрузки, используя jquery ajax.
Это мой вызов ajax
var jqxhr = $.ajax({
url:"myurl",
type:"get",
dataType: "html",
data:formData
});
jqxhr.done(function( data, textStatus, jqxhr) {
//here i get data is not defined, textStatus not defined ??
});
А это мой контроллер
@RequestMapping(value="/myurl", produces = "text/html;charset=UTF-8")
public ModelAndView getMyHtml( Input input, HttpServletRequest request ) throws Exception {
ModelAndView model = new ModelAndView("myPage");
//my business logic code goes here
return model;
}
myPage
- это HTML-страница, которая использует тимелист и отображает страницу.
Я не уверен, что я здесь делаю неправильно.