标签:== app string 模糊 new 服务 模糊查询 map arch
##发送ajax请求
发送事件:输入关键词后,点回车
请求的参数:输入的关键字
请求地址:/share/search.do
##服务器处理
-Controller:调用Service层方法即可
-Service:
public ResultNote<List<Share>> searchNote(String keyWord){
//拼接模糊查询
String title = "%"+keyWord+"%";
//模糊查询
List<Share> list = shareDao.findLikeTitle(title);
//构建返回结果
ResultNote<List<Share>> result = new ResultNote<List<Share>>();
......
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请求
}
})
标签:== app string 模糊 new 服务 模糊查询 map arch
原文地址:https://www.cnblogs.com/gol2q/p/13052179.html