angularJS单向数据绑定和模型编辑与ng-repeat

时间:2015-02-17 13:59:57

标签: javascript jquery html angularjs

在我的应用程序中,我使用模态表单编辑表格视图数据。我有一个麻烦,在第一步我没有使用其他变量和.copy() - 所以当我编辑我的数据 - 在表中我没有看到任何编辑直到我点击保存(现在它的参考)。现在我需要做我之前描述的......

我看到angularJS 1.3添加了一个功能:单向数据绑定。

我可以在我的应用程序中以某种方式使用它吗?

我写了一个吸虫:

http://plnkr.co/edit/4gAWiK5gVg58jWtwYovK?p=preview

和代码:

<html ng-app="myapp">
  <head>
    <script data-require="angular.js@1.4.0-beta.4" data-semver="1.4.0-beta.4" src="https://code.angularjs.org/1.4.0-beta.4/angular.js"></script>
    <link rel="stylesheet" href="style.css" />
    <script src="script.js"></script>
  </head>
  <body ng-controller="ArticleCtrl">
    <h1>Hello Plunker!</h1>
    <ol >
      <li ng-repeat="item in articles">
        <h4>{{item.name}}</h4>
        <h2>{{::item.age}}</h2> <!--(like this i wanna to use with angularJS 1.3)-->
        <a ng-click="editArticle(item)"> - Edit - </a>
      </li>
    </ol>
    Edit your title: <input type="text" ng-model="article.name"/>
    Edit your age: <input type="text" ng-model="article.age"/>
    <p>And save:</p>
    <button type="submit">Save</button>
  </body>
</html>

和js:

var app = angular
    .module('myapp', []);

angular.module('myapp')
  .controller('ArticleCtrl', ['$scope', function($scope) {
    $scope.articles = [{name: '123', age: 10}, {name: '456', age: 20}, {name: '789', age: 30}];
    $scope.article = {name: '', age: ''};
    $scope.editArticle = function(article){
      $scope.article = article;
    };
  }])

如果不清楚,请在评论中写下。谢谢。

还有一次又一次:不要在ng-repeat中更新模型,直到按钮&#34;保存&#34;点击。

1 个答案:

答案 0 :(得分:1)

不确定您是否已找到解决问题的方法。

根据评论中的建议,您需要复制模型对象,并在保存时可以将新数据重新应用于模型。

这是我通过以下更改找到的解决方案:

$scope.editArticle = function(article){
      edit_article = article; // edit_article stores a reference to the article to edit
      angular.copy(article, $scope.article); // copy article to form fields --> ref. by $scope.article
};
$scope.saveArticle = function(){
      update(edit_article, $scope.article); // dest. is stored reference to element in list
                                            // source is the new input
      //console.log('edited value', $scope.article);
};

简短说明:我在edit_article中存储了对文章的引用,因为angular.copy正在从副本中移除$$hashKey并且有角度无法通过哈希定位数组中的位置。 单击保存后,更新功能会将保存的文章更改为新输入的数据。

我找到了一个有用的blog post,我从中获取了更新功能。

您可以找到更新的plunkr here