Iが同じコントローラコンテキスト内(この場合モーダル)別の要素にリピータから単一のアイテム/オブジェクト(「CA」)を渡したい:ng-repeatから別の要素にアイテムを渡す方法や参照する方法はありますか?
<div data-ng-controller="ContactActionCtrl" data-ng-app="myApp" runat="server">
<div class="row">
<div class="col-sm-12">
<h2>Tasks</h2>
<table class="table">
<thead>
<tr>
<th>Created</th>
<th>Due</th>
<th>Completed</th>
<th>Created By</th>
<th>Assigned</th>
<th>Description</th>
</tr>
</thead>
<tbody data-ng-repeat="ca in contactactions | filter:{ObjectType:'Task'}">
<tr data-actionid="{{ca.Id}}" data-toggle="modal" data-target="#actionDetail">
<td>{{ca.CreationDate | date:"MM/dd/yyyy"}}</td>
<td>{{ca.ActionDate | date:"MM/dd/yyyy 'at' h:mma"}}</td>
<td>{{ca.CompletionDate | date:"MM/dd/yyyy"}}</td>
<td>{{ca.CreatedByUsername}}</td>
<td>{{ca.UserIDUsername}}</td>
<td><label data-ng-if="ca.ActionType">{{ca.ActionType}} - </label><label>{{ca.ActionDescription}}</label><br>{{ca.CreationNotes | limitTo:270}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="actionDetail" class="modal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">{{ca.ActionDescription}}</h4>
</div>
<div class="modal-body">
//more details from ca here
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
すべてが機能しています行のクリックからブートストラップモーダルdivをポップアップすることを含みますが、実際にはリピータの外側からポップすることはありません。完全なオブジェクトがまだメモリに残っているので、モーダルを埋めるために、別のサービスコールを使用してdbから単一のアイテムを再度フェッチしないようにしたいと考えていました。私はモーダルを示していますが、この質問はリピータの外側にある要素/要素のセットに適用されると思います。
ありがとうございました!あなたのお尻は上記の例とまったく同じではありませんが、私はそれの要点を得て、それを実現させました。私は新しい範囲項目、selectedActionをモーダルで使用します。素晴らしい。あまりにも歓迎! – secretwep
@secretwep、ありがとう! – Ynot
それについては良いことですが、浅いコピーをしています。つまり、この新しくコピーされたオブジェクト内の何かを更新すると、そのオブジェクトは、それが開始されたのと同じアイテムに反映されます。 ディープコピーが必要な場合、deep.copyを実行するので、angular.copy(selected、newItem)はそのトリックを行います! –