在输入字段中,将输入特定ID,并将其保存在searchText中:

<form class="input-group" ng-submit="getMainData()">
  <input type="text" class="form-control" ng-model="searchText"  placeholder=" Type KvK-nummer and Press Enter" id="typehead">
</form>


当按下回车键时,它将从控制器获得此功能

$scope.getMainData = function(){
 $http.get("http://localhost:8091/odata/dll-poc-dv/Account(':searchText')")
        .success(function(data){
            $scope.allData = data;
            $scope.getData = $scope.allData.d.results;
        });
    };


我要实现的是输入要输入的searchText作为参数获取相关数据的方括号(':searchText')中。用于获取数据的有效URL如下所示:http://localhost:8091/odata/dll-poc-dv/Account('41-125061-0000')

最佳答案

使用+运算符来连接变量。另外,使用$scope.searchText

$http.get("http://localhost:8091/odata/dll-poc-dv/Account('" + $scope.searchText + "')")

10-08 19:04