我想從角度控制器獲取表單數據但沒有成功。從控制器內部獲取表單數據
HTML:
<form>
<input type="text" id="entityName" ng-model="ent.Name">
<button class="btn" type="button" onclick="this.blur()" ng-click="$event.preventDefault(); saveData()">Save</button>
</form>`
JS控制器:
$scope.saveData = function() {
console.log($scope.ent.Name);
}
我收到錯誤:Error: $scope.ent is undefined
我已將代碼添加到代碼塊中,而不是您使用的「'和」
「。 –
謝謝,下次我會更加小心。 – JBALES