簡體   English   中英

使用angularjs恢復默認下拉值

[英]Restoring default drop down value with angularjs

雖然我有這個工作,但它的工作方式似乎不合適。 我有一個顯示團隊列表的下拉列表(DDL)。 頂部和默認條目是“Select Team ...”。 雖然我的DDL與模型相關聯,但“選擇團隊......”不應該成為其中的一部分,因為“選擇團隊......”對域模型沒有意義。

當用戶單擊“添加新”時,表單將清除,所有DDL應恢復為其默認值。

以下是相關的控制器功能:

scope.addUser = function() {
  resetToNewUser();
  $scope.profileVisible = true;
  $scope.oneAtATime = true;
  $scope.accordionStatus = { isFirstOpen: true, isFirstDisabled: false };
}

function resetToNewUser() {
  $scope.selectedUser.NtId = "";
  $scope.selectedUser.UserId = -1;
  $scope.selectedUser.IsActive = true;
  $scope.selectedUser.FirstName = "";
  $scope.selectedUser.LastName = "";
  $scope.selectedUser.JobTitle = "";
  $scope.selectedUser.Email = "";
  $scope.selectedUser.SecondaryEmail = "";
  $scope.selectedUser.PhoneNumber = "";
  for(var i = 0; i < $scope.roleList.length; i++) {
    if($scope.roleList[i].RoleSystemName.trim() === "BLU") {
      $scope.selectedUser.Role = $scope.roleList[i];
    }
  }
  $scope.selectedUser.SupervisorId = null;
  //HACK BELOW//
  document.getElementById('selTeam').selectedIndex = 0; // <-- This works, but feels like a hack.
  $scope.selectedUser.IsRep = false;
  for(var i = 0; i < $scope.signingAuthorityList.length; i++) {
    if($scope.signingAuthorityList[i].SigningAuthoritySystemName === "SME") {
      $scope.selectedUser.SigningAuthority = $scope.signingAuthorityList[i];
    }
  }
  $scope.selectedUser.IsOutOfOfficeEnabled = false;
  $scope.selectedUser.OutOfOfficeStartDate = null;
  $scope.selectedUser.OutOfOfficeEndDate = null;
  $scope.selectedUser.OutOfOfficeAppointedRepId = null;
}

以下是模板中DDL的定義方式:

<div class="form-group">
  <label for="" class="control-label col-sm-2 required">Team</label>
  <div class="col-sm-10">
    <select class="form-control" id="selTeam"
            ng-model="selectedUser.Team"
            ng-options="team as team.TeamName for team in teamList track by team.TeamId">
      <option value="">Select Team...</option>
    </select>
  </div>
</div>

有一個更好的方法嗎?

您可以隨時刪除用戶選擇占位符選項的功能,對吧? 像這樣的東西:

<option value="" disabled selected hidden>Select Team...</option>

你的html部分看起來不錯,但我認為在js方面你做了很多邏輯。 如果在服務器上添加新選項會怎樣? 最好從后端獲取新用戶的狀態,使用select和其他小部件對其進行自定義,並在提交之前保留它。 在偽代碼上它看起來像

$scope.addUser = function() {
   //create empty user on the scope
   $scope.selectedUser = {};
   //get the new user state from the backend
   UserService.resetToNewUser($scope.selectedUser);
   //setup view options
   $scope.accordionStatus = {isFirstOpen: true, isFirstDisabled: false}
};

app.service('UserService', function(){
    this.resetToNewUser = function(user){
        $http({
            method: 'GET',
            url: '/default_user/'
        }).then(function successCallback(response) {
            user = response;
        );
    };           
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM