[已解决]TypeError:无法读取未定义的属性“fname”

软文推广2个月前发布 刘老三
4 0

这是 HTML 表单。当我单击“编辑”按钮时,我需要将条目放回到表单中。它指向脚本函数 selectEdit()

<div ng-app=”MyApp” ng-controller=”mainController”>
<div class=container>
<form ng-submit=”addItem()” name=”myForm”>
<br>
<br>
<br>
<br>
<h1> Add Member </h1>

<div class=”form-group”>
<div class=”col-xs-3″>

<input type=”text” placeholder=”first name” ng-model=”fname” required class=”form-control”
> <br>
<input type=”text” placeholder=”last name” ng-model=”lname” required class=”form-control”> <br>
<input type=”email” placeholder=”Email” ng-model=”email” name=”myEmail” class=”form-control”> <br>
<span ng-show=”myForm.myEmail.$error.email”> Not a Valid Email Address </span>
<input type=”number” placeholder=”contact number” ng-model=”contact” required class=”form-control”> <br>
<input type=”text” placeholder=”address” ng-model=”addres” required class=”form-control”> <br>
<input type=”submit” value =”Submit”>
</div>
</div>

</f… <th><input type=”text” ng-model=”searchEmail” placeholder=”search”> </th>
<th><input type=”text” ng-model=”searchContact” placeholder=”search”> </th>
<th><input type=”text” ng-model=”searchAddress” placeholder=”search”> </th>
<th><input type=”text” disabled=”sfd” > </th>
</tr>

<tr ng-repeat=”x in address | orderBy: ‘fname’ | filter:{fname:searchFname, email:searchEmail, contact:searchContact, addres:searchAddress}”>

<td> {{x.fname + ” ” + x.lname}} </td>
<td> {{x.email}} </td>
<td> {{x.contact}} </td>
<td> {{x.addres = $index}} </td>
<td> <input type=”button” value=”edit” ng-click=”selectEdit($index)”> | <input type =”button” value=”delete” ng-click=”remove($index)”></td>

</tr>
</table>
</div>

</div>

问题是我无法将条目放回表格中。它错误无法读取未定义的属性“fname”

<script type=”text/javascript“>
var app = angular.module(“MyApp”, []);

app.controller(“mainController”, function($scope) {

$scope.x = [];
$scope.address= [];
$scope.fname = “”;
$scope.lname = “”;
$scope.email = “”;
$scope.contact = “”;
$scope.addres = “”;

$scope.addItem = function() {
$scope.address.push({
fname: $scope.fname,
lname: $scope.lname,
email: $scope.email,
contact: $scope.contact,
addres: $scope.addres
});

$scope.fname = “”;
$scope.lname = “”;
$scope.email = “”;
$scope.contact = “”;
$scope.addres = “”;

};

$scope.remove = function(index) {
var isConfirmed = confirm(“Are you sure to delete this record?”);

if(isConfirmed) {
$scope.address.splice(index,1);

}
else {
return false;
}

};

$scope.selectEdit = function(index) {
console.log(index);
var chenes = getSelectedIndex(index);
var list = $scope.address[chenes];
$scope.fname = list.fname;
$scope.lname = list.lname;
$scope.email = list.email;
$scope.contact = list.contact;
$scope.addres = list.addres;

};

function getSelectedIndex(index){
for(var i=0; i<$scope.address.length; i++)
if($scope.address[i].index==index)
return i;
return -1;
};

});

</script>

解决方案

看来地址数组不包含chenes,尝试在这一行之前执行chenes和地址的console.log:var list = $scope.address[chenes];

我猜测地址项中不存在属性索引,并且 chenes 的值为 -1,这就是为什么list未定义(导致错误的原因)

© 版权声明

相关文章