gpt4 book ai didi

javascript - 选择选项时 dataList 自动填充其他字段 - AngularJs

转载 作者:行者123 更新时间:2023-12-03 02:50:38 25 4
gpt4 key购买 nike

我有一个名称数据列表,我想在选择名称时自动填充电话号码和位置字段,目前,这些字段从范围获取值通过单击 < td > 列来控制 Angular Controller ,这是我的代码:

HTML 来源:

<div ng-controller="facture_retour"">
<table>
<thead>
<tr>
<td><strong>Client</strong></td>
<td>
<input type="text" id="client_List" list="clientList" />
<datalist id="clientList">
<option ng-repeat="fc in facture_client_retour" data-tele="{{fc.phone_number}}" data-location="{{fc.location}}" data-id="{{fc.id}}" value="{{fc.fname}} {{fc.lname}} |{{fc.code}}" id="optIdFc">
</datalist>
</td>
</tr>
<tr>
<td ng-click="getClientAttr();"><strong>Telephone</strong></td>
<td>{{clientPhoneNumber}}</td>
</tr>
<tr>
<td><strong>Location</strong></td>
<td>{{clientLocation}}</td>
</tr>
</thead>
</table>
</div>

我没有收到任何错误,并且单击 < td > 调用函数 getClientAttr() 时工作​​正常,但我的需要是在选择该选项时自动调用此函数。JS 来源:

app.controller('facture_retour',function($scope, $http){
$scope.facture_client_retour;
angular.element(document).ready(function () {
$scope.getAllClients();
});


/*This function is responsible of getting all clients Name and display them
in the data-list */
$scope.getAllClients=function(){
var url = '../php/mainPageFacture.php';
var data = {"function":"getAllClients"};
var options={
type : "get",
url : url,
data: data,
dataType: 'json',
async : false,
cache : false,
success : function(response,status) {
$scope.facture_client_retour = response;
$scope.$apply();
},
error:function(request,response,error){
// alert("Error: " + error + ". Please contact developer");
swal({
title: "Please contact your software developer",
text: "ERROR: " + error,
type: "warning",
showCancelButton: false,
confirmButtonClass: "btn-info",
confirmButtonText: "Ok",
closeOnConfirm: true
});
}
};
$.ajax(options);
$scope.call=getClientAttr();
}

/*this function getting the other fields (phone number,location) values and
display them by clicking on < td >*/
$scope.getClientAttr=function(){
//alert("here we go");
var val = $('#client_List').val()
var client_phone_number= $('#clientList option').filter(function() {
return this.value == val;
}).data('tele');

$scope.clientPhoneNumber=client_phone_number;
var val = $('#client_List').val()
var client_location= $('#clientList option').filter(function() {
return this.value == val;
}).data('location');
$scope.clientLocation=client_location;
}

});

最佳答案

将 ng-model 添加到您的输入

<input type="text" ng-model="Data" id="client_List" list="clientList" />

您可以将 ng-click 添加到数据列表选项并将所选值设置为模型

<datalist id="clientList">
<option ng-repeat="fc in facture_client_retour" data-tele="{{fc.phone_number}}" data-location="{{fc.location}}" data-id="{{fc.id}}" value="{{fc.fname}} {{fc.lname}} |{{fc.code}}" id="optIdFc" ng-click="Data = fc">
</datalist>

并在模型更改时在 Controller 中设置位置和电话号码的值

  $scope.$watchCollection('Data', function(newValue, oldValue) {
if(newValue != undefined)
angular.forEach($scope.data, function(value, key) {
if(value.name == newValue){
$scope.clientPhoneNumber = value.phone_number;
$scope.clientLocation = value.location;
}
});
});

关于javascript - 选择选项时 dataList 自动填充其他字段 - AngularJs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47875628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com