1
我想搜索'索引'和'類型'是從用戶通過HTML表單輸入。我對angular和Elasticsearch都很陌生。Elasticsearch搜索數據與angularjs
我嘗試使用此代碼,並結合通過NG-模型
ExampleApp.controller('MatchController', function ($scope, client, esFactory) {
function click($scope){
$scope.index = '';
$scope.type = '';
$scope.key = '';
client.search({
index: $scope.index ,
type: $scope.type ,
size: 50,
body: {
"query":
{
"match": {
name: $scope.key
}
},
}
HTML代碼中的變量...
<input type="text" ng-model="index" id="index" /> <br><br>
<input type="text" ng-model="type" id="type" /><br><br>
<input type="text" ng-model="key" id="key" /><br><br>
<input type="button" value="search" onclick="click()">
是否有可能做到這一點???如果是這樣?
非常感謝。