選擇電流值不能從我的列表中設置當前用戶從陣列中angularjs
提交表單
[{"name":"Erich","surname":"Josh","email":"[email protected]","age":"22","tel":"32423432432"}]
的setCurrent用戶功能
$scope.currentUser = null;
$scope.setCurrentUser = function(name) {
$scope.currentUser = $scope.users[name];
};
後,我要點擊我的數組名稱,然後顯示有關該用戶的完整信息,但我不能選擇當前。
我在做什麼錯了?
內plunkr /的jsfiddle請 – Anand