我有一些简单的选择:
<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。