Jquery getJSON无法使用Spring MVC

时间:2011-08-20 21:49:44

标签: jquery spring-mvc spring-json

以下代码无法将请求提交给服务器,我无法弄清楚原因。

这是我的jsp页面的一部分

 $(document).ready(function() {
    $('#firstName').change(function() {
        if(('#firstName').val().length >= 2){
                $.getJSON(
                   "getPSPersons.html", 
                   { firstName: $('#firstName').val(), lastName: $('#lastName').val()},
                   function(data) {
                     buildTable(data);
                   }
                );
         }
     });
  });
   -------------------------------
 <form:form name="addperson" method="GET">
      <label for="firstName">First Name</label> &nbsp;
      <input type="text" name="firstName" id="firstName" size="15"/>  &nbsp; &nbsp;
      <label for="lastName">Last Name</label> &nbsp;
      <input type="text" name="lastName" id="lastName" size="15"/>
  </form:form>

Spring控制器类函数

   @RequestMapping(value="getPSPersons.html", method = RequestMethod.GET)
   public @ResponseBody List<Person> getPersonsWithNames(
         @RequestParam("firstName") String firstName, @RequestParam("lastName") String lastName) 
   {
       List<Person> personList = new ArrayList<Person>();
          if(firstName.length()>=2 || lastName.length() >=2)
    {
                 personList = personService.getPersonsWithName(firstName, lastName);
    }
          return personList;
    }

要求是当用户在“firstname”输入框中输入多个字符时,应该向服务器提交一个AJAx请求,以获取firstname以这些字母开头的所有人......但这里get请求从不调用这个函数..我很确定JQuery请求端有什么问题,但我找不到它是什么..

- - - - 更新---------

发现错误..第3行应该是      if( $ ('#firstName')。val()。length&gt; = 2){ 开头的$缺少了

2 个答案:

答案 0 :(得分:0)

如果您愿意,而不是重新发明轮子,为什么不使用预先存在的自动提示窗口小部件 - 在JQuery中编写了不少内容。我只喜欢这个:http://code.drewwilson.com/entry/autosuggest-jquery-plugin - 试一试。

答案 1 :(得分:0)

我发现了一个js错误。

('#firstName').val().length

一定是

$('#firstName').val().length

$(this).val().length

你丢失了“$”,修好了,我发现请求被发现了。