J'ai la liste select
suivante:
<select name="make" class="form-control" ng-model="selectCity">
<option value="Kannur">Kannur</option>
<option value="Agra">Agra</option>
<option value="Ahemedabad">Ahemedabad</option>
<option value="Bangalore">Bangalore</option>
<option value="Chennai">Chennai</option>
<option value="Mumbai">Mumbai</option>
</select>
Lorsque je modifie l'option sélectionnée, je dois passer le ng-model
, selectCity
à une usine qui appelle un API
:
L'usine:
carPriceApp.factory('APIservices', function($http){
APIcarModels = {};
APIcarModels.getAPIcarModels = function(){
return $http.get('/carprices3/api/apiData'+ selectCity +'.js')
}
return APIcarModels;
});
J'ai résolu votre problème écrire html ici
<div ng-controller="myCtrl">
<select ng-change="changeCity()" name="make" class="form-control" ng-model="selectCity">
<option value="Kannur">Kannur</option>
<option value="Agra">Agra</option>
<option value="Ahemedabad">Ahemedabad</option>
<option value="Bangalore">Bangalore</option>
<option value="Chennai">Chennai</option>
<option value="Mumbai">Mumbai</option>
</select>
</div>
et javascript ici
var app = angular.module('myApp', []);
app.factory('APIservices', function($http) {
var APIcarModels = {};
APIcarModels.getAPIcarModels = function(selectCity) {
alert(selectCity);
return $http.get('/carprices3/api/apiData'+ selectCity +'.js')
}
return APIcarModels;
});
function myCtrl($scope, APIservices) {
$scope.changeCity = function() {
APIservices.getAPIcarModels($scope.selectCity);
};
}
Exemple de travail Ici
Vous pouvez utiliser la propriété ng-change
sur votre liste de sélection et appeler votre API à partir de là. Vous devrez également prendre un paramètre dans votre fonction getAPIcarModels
:
Votre balisage serait comme:
<select name="make" class="form-control" ng-model="selectCity" ng-change="selectMake()">
Et dans votre contrôleur:
$scope.selectMake = selectMake() {
APIservices.getAPIcarModels($scope.selectCity);
}
Et enfin, votre usine:
APIcarModels.getAPIcarModels = function(selectCity){
return $http.get('/carprices3/api/apiData'+ selectCity +'.js')
}
vous devez ajouter quelque chose comme ng-change="changeCity(selectCity)"
Référez-vous aux articles ci-dessous pour des exemples et plus d'informations
http://plnkr.co/edit/0IVNLHiw3jpz4zMKcB0P?p=preview
http://stackoverflow.com/questions/26485346/how-do-i-get-the-ng-model-of-a-select-tag-to-get-the-initially-selected-option
http://stackoverflow.com/questions/25935869/id-as-ng-model-for-select-in-angularjs
alternativement: en utilisant ng-options
:
vue:
<div ng-app='App' ng-controller="AppCtrl">
<select ng-model="selectedCity" ng-options="city.name for city in cities">
</select>
Selected City is {{selectedCity.name}}
</div>
js:
angular.module('App', [])
.controller('AppCtrl', function($scope) {
$scope.cities = [
{name: 'Chicago'},
{name: 'London'}
];
$scope.selectedCity = '';
});
exemple de travail: https://jsfiddle.net/pz9f093e/