2015-12-14 70 views
-1

我有一個用於顯示在回覆評論的形式加載DIV NG單擊

<div class="box-body showmycomments"></div> 
<div class="box-footer showmycomments"></div> 

我回複意見錨標記在另一個DIV現在

<a ng-click="add(data)" style="cursor:pointer;" > Reply Comments</a> 

我想股利節在ng-click上爲每個回覆評論加載'showmycomments'div。

我的模塊有多個評論和回覆評論選項,在ng-repeat我需要爲每個重播評論加載div'showmycomment'。 註釋顯示如圖所示。如果我單擊顯示註釋,因爲它顯示第二個圖像中顯示的形式。如果單擊錨標記,我想加載表單下面的回覆註釋。

enter image description here

圖像2

enter image description here

+2

你的問題有點不清楚。你能改說嗎? –

+0

@ Shashank Agrawal請檢查我更新的問題 – user3386779

回答

0

在我看來你的做法是錯誤的。

您應該使用ng-include來創建div並複製它(儘管可能很麻煩),而無論您需要何種地方都可以注入整個html。

這應該是這樣的:

的index.html(或HTML你有ng-repeat

<div ng-repeat="comment in comments"> 
    <div ng-include="'comment.html'"></div> 
</div> 

comment.html - 在這裏你可以從上面使用comment

<div class="comment-container"> 
    {{ comment.text }} 
</div> 

因此,對於每一個項目,你重複e comment.html並填寫任何你想要的。

+0

你能指導我做到這一點嗎? – user3386779