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