我有一个折叠的模型,显示有关客户端的更多信息,并且insid,我有一个按钮,当我点击,我没有得到特定客户的信息,我得到所有客户的数据
app.js
$stateProvider.state('modifClient',{
url: '/modifClient',templateUrl: 'templates/modifClient.html',params: {CodeClient: null},controller: 'ConsultClientCtrl'
});
app.controller("ConsultClientCtrl",function($scope,$http) {
$scope.loadClient = function(){
$http.get("http://localhost/deb/debut.php")
.success(function(data){
$scope.names = data;
});
}
});
modifClient.html
最佳答案
原文链接:https://www.f2er.com/html/425587.html