从bootstrap select中获取数据

时间:2017-09-28 12:22:48

标签: angularjs bootstrap-4

我有一些简单的选择:

<select id="licenseTypeSelect" name="licenseTypeSelect" class="form-control" ng-model="selectedLicenseType">
  <option data-ng-repeat="licenseType in licenseTypes" value="{{licenseType.licenseTypeId}}">
  {{licenseType.name}}
  </option>
</select>

Http.Post的一些代码:

$scope.AddLicenseButton = function () {
        $http({
            method: 'POST',
            url: 'http://localhost:5000/licenses/',
            dataType: 'application/json',
            data: {
                name: $scope.name,
                count: $scope.count,
                buyDate: $scope.buyDate,
                licenseTypeId: $scope.selectedLicenseType
            }
        });
    }

我的问题是我无法选择licenseTypeId。

0 个答案:

没有答案