Browse Source

es搜索

layui
mail_yanpeng@163.com 5 years ago
parent
commit
162dddea22
  1. 4
      views/search.html

4
views/search.html

@ -59,8 +59,8 @@
//请求前的处理 //请求前的处理
}, },
success: function (resp) { success: function (resp) {
$(".search-result").children().remove();
if (resp.hits.total != 0) { if (resp.hits.total != 0) {
$(".search-result").children().remove();
resp.hits.hits.forEach(function (el, index) { resp.hits.hits.forEach(function (el, index) {
console.log(el._source) console.log(el._source)
var htmlStr = '<div class=\"search-item\">\n' + var htmlStr = '<div class=\"search-item\">\n' +
@ -69,6 +69,8 @@
' </div>' ' </div>'
$(".search-result").append(htmlStr) $(".search-result").append(htmlStr)
}) })
}else{
$(".search-result").append('<p>没有搜索到相关文章</p>')
} }
//请求成功时处理 //请求成功时处理
}, },

Loading…
Cancel
Save