脚本块在 AngularJS ng-repeat 部分中不起作用

Script block not working in AngularJS ng-repeat section

脚本块在 AngularJS ng-repeat 部分不起作用。问题如下。

<div ng-repeat="user in users">
  <input type="text" ng-model="{{user.mobile}}" ng-value ="{{user.mobile}}">

  <script>
    $(function () {
        var mobile ="{{user.mobile}}";
        alert("{{user.mobile}}");            
    });
 </script>
</div>

AngularJS 表达式中的脚本标签不会计算。 这也不是您想要执行此操作的方式。在控制器指令中执行此操作,但不在您的 DOM.

中执行

https://groups.google.com/forum/?fromgroups#!topic/angular/9d-rhMiXDmg