我有这个HTML:
<form ng-submit="addComment()">
<md-input-container flex>
<label>Shoutout</label>
<input type="text" ng-model="comment">
</md-input-container>
</form>
在我的控制器中:
$scope.comment = "";
$scope.addComment = function(){
console.log("Value from input", $scope.comment);
$scope.comment = "test"
console.log("New Value", $scope.comment);
}
input
当我在模型上输入更新时,它工作正常。但是当我按下回车键时,我希望输入的值会记录在控制台上。但它似乎无法从ng-model
.