Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我在 HTML 表单中的输入元素:
<input ng-model="amount" />
截至目前,由于 $scope.amount = 0 在我的控制器中,它显示为该值。我需要的是一开始输入为空白。这将允许我的用户将数据输入其中而无需擦除 0,同时仍利用 ng-model 绑定。
只需删除$scope.amount或制作$scope.amount = null
$scope.amount
$scope.amount = null