我对每篇使用 ngrepeat 的文章都有评论功能。添加的新评论应更新为评论。
<div ng-repeat="Article in Articles">
    <div class="Description">
        {{Article.Description}}
    </div>
   <div class="commentbox">
         <textarea placeholder="Share your View" ng-model="Article{{Article.Articleid}}" ></textarea>
           <div class="post">
              <a href="javascript: void(0)" ng-Click="AddComment({{Article.Articleid}});" > Article </a>
           </div>
    </div>
</div>
添加评论的Js函数是
  $scope.AddComment = function(ArticleID){
    $scope.Comments.push({
        ArticleID: ArticleID,
        **ReviewText: $scope.Comment130, //how to acess the model of received ArticleID**
    DateAdded:new Date()
    });
我的问题是如何将动态值设置为 ng-model 并在 jsfunction 中访问它。
谢谢