AngularJsソース:
<html ng-app>
<body ng-controller="Controller">
<div ng-init="numbers=[11,22,33]">
<div ng-repeat="n in numbers">
<input type="text" ng-model="n"/> [{{n}}]
</div>
</div>
<script>
function Controller($scope) {}
</script>
</body>
</html>
入力の値を変更しても、右側のテキストは更新されません。どこが間違っているのですか?
ライブデモはこちらです:http://jsfiddle.net/Freewind/TZwxy/
入力の値を変更して、を参照できます。