マイHTMLngRepeatのテキスト入力からアイテム番号を取得するにはどうすればよいですか?
<body ng-app="myApp" ng-controller="myCTRL">
<form class="my-form" ng-repeat="item in items" novalidate>
<h4>{{item.number}}</h4>
<input type="text" ng-model="item.hed"><br>
<input type="text" ng-model="item.subhed">
</form>
</body>
私のJS:私はinput
タグに何かを入力すると
var app= angular.module("myApp",[]);
app.controller("myCTRL",function($scope,$http){
$scope.items= [
{
number: chartNumber,
hed: '',
subhed: ''
}
];
});
、私はitem.number
値をconsole.log()
たい。 AngularJS v1.6.1でどうすればいいですか?
*私は 'input'タグに何かを入力すると、私は'にconsole.log() '' item.number'大切にしたい。*何?? ? –