jQuery-按回车发送事件

2021-02-10 08:17

阅读:410

标签:==   app   string   模糊   new   服务   模糊查询   map   arch   

##发送ajax请求

发送事件:输入关键词后,点回车

请求的参数:输入的关键字

请求地址:/share/search.do

##服务器处理

-Controller:调用Service层方法即可

-Service:

public ResultNote> searchNote(String keyWord){

  //拼接模糊查询

  String title = "%"+keyWord+"%";

   //模糊查询

  List list = shareDao.findLikeTitle(title);

  //构建返回结果

  ResultNote> result = new ResultNote>();

  ......

  result.setDate(list);

  return result;

}

-Dao(select):findLikeTitle

cn_share:select * from cn_share where xxx like %关键词%

 

Mapper中配置的sql语句:

select * from cn_share where cn_share_title like #{title}

 

##ajax回调处理

$("#input_id").keydown(function(event){

  var code = event.keyCode;

  if(code==13){

    //发送ajax请求

  }

})

jQuery-按回车发送事件

标签:==   app   string   模糊   new   服务   模糊查询   map   arch   

原文地址:https://www.cnblogs.com/gol2q/p/13052179.html


评论


亲,登录后才可以留言!