我是 solr 的新手,我的 solr 中有 2 个字段说 displayName 和 foodType 目前我正在使用以下代码从角度查询
angular.element.ajax({
url: "http://dev2.slim.in:8983/solr/food/select",
data: {
"q": "displayName",
"wt": "json",
"start":0,
"rows":200
},
traditional: true,
cache: true,
async: true,
dataType: 'jsonp',
success: function (data) {
//and when we get the query back we
//stick the results in the scope
$scope.$apply(function () {
$scope.foodResults = data.response.docs;
console.log("result from solr is ",$scope.foodResults)
});
},
jsonp: 'json.wrf'
});
如果与查询匹配的 displayName 字段 foodType 为 indian,那么我想将它提升到高于其他文档怎么做???