要传递字符串给GET方法并更新AngularJS中的数据,可以使用$http服务来发送GET请求并更新数据。
以下是一个示例代码:
HTML模板:
- {{ item }}
AngularJS控制器:
angular.module('myApp', [])
.controller('MyController', function($scope, $http) {
$scope.searchTerm = '';
$scope.items = [];
$scope.search = function() {
$http.get('api/endpoint?searchTerm=' + $scope.searchTerm)
.then(function(response) {
$scope.items = response.data;
})
.catch(function(error) {
console.log(error);
});
};
});
在上面的示例中,我们定义了一个包含一个输入框和一个按钮的HTML模板。输入框使用ng-model指令绑定到$scope.searchTerm变量,按钮使用ng-click指令调用$scope.search函数。
在控制器中,我们注入了$http服务,并定义了$scope.search函数。当用户点击搜索按钮时,该函数将发送一个GET请求到指定的API端点(这里假设为'api/endpoint'),并将搜索词作为查询参数传递。
在成功返回响应后,我们将响应数据(这里假设为一个包含结果的数组)赋值给$scope.items变量。在HTML模板中,我们使用ng-repeat指令将每个结果项显示在一个
注意:上述示例中的API端点和响应数据格式需要根据实际情况进行更改。