55

ng-repeatコンテンツを編集できるようにするための最良の方法を使用する場合はどうなりますか?

私の理想的な状況では、追加された誕生日はハイパーリンクになります。これをタップすると、編集フォームが表示されます。これは、更新ボタンのある現在の追加フォームとまったく同じです。

ライブプレビュー(プランカー)

HTML:

<!DOCTYPE html>
<html>
  <head lang="en">
    <meta charset="utf-8">
    <title>Custom Plunker</title>
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
    <script>
      document.write('<base href="' + document.location + '" />');
    </script>
    <script src="app.js"></script>
    <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.0/css/bootstrap-combined.min.css"
    rel="stylesheet">
  </head>
<body ng-app="birthdayToDo" ng-controller="main">
    <div id="wrap">

      <!-- Begin page content -->
      <div class="container">
        <div class="page-header">
          <h1>Birthday Reminders</h1>
        </div>
            <ul ng-repeat="bday in bdays">
                <li>{{bday.name}} | {{bday.date}}</li>
            </ul>

           <form ng-show="visible" ng-submit="newBirthday()">
            <label>Name:</label>
            <input type="text" ng-model="bdayname" placeholder="Name" ng-required/>
            <label>Date:</label>
            <input type="date" ng-model="bdaydate" placeholder="Date" ng-required/>
            <br/>
            <button class="btn" type="submit">Save</button>
        </form>
      </div>

      <div id="push"></div>
    </div>

    <div id="footer">
      <div class="container">
        <a class="btn" ng-click="visible = true"><i class="icon-plus"></i>Add</a>
      </div>
    </div>
    </body>

App.js:

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

app.controller('main', function($scope){ 

    // Start as not visible but when button is tapped it will show as true 

        $scope.visible = false;

    // Create the array to hold the list of Birthdays

        $scope.bdays = [];

    // Create the function to push the data into the "bdays" array

    $scope.newBirthday = function(){

        $scope.bdays.push({name:$scope.bdayname, date:$scope.bdaydate});

        $scope.bdayname = '';
        $scope.bdaydate = '';

    };
});
4

4 に答える 4

71

フォームを各ノード内に配置し、とを使用ng-showng-hideて編集を有効または無効にする必要があります。このようなもの:

<li>
  <span ng-hide="editing" ng-click="editing = true">{{bday.name}} | {{bday.date}}</span>
  <form ng-show="editing" ng-submit="editing = false">
    <label>Name:</label>
    <input type="text" ng-model="bday.name" placeholder="Name" ng-required/>
    <label>Date:</label>
    <input type="date" ng-model="bday.date" placeholder="Date" ng-required/>
    <br/>
    <button class="btn" type="submit">Save</button>
   </form>
 </li>

ここでの重要なポイントは次のとおりです。

  • コントロールng-modelをローカルスコープに変更しました
  • 編集中に表示できるように追加ng-showされましたform
  • 編集中にコンテンツを非表示にするためのを追加しましspanng-hide
  • ng-click他の要素に含まれる可能性のある、に切り替わるeditingを追加しましたtrue
  • ng-submitに切り替えるように変更されeditingましたfalse

これが更新されたプランカーです。

于 2013-03-16T19:11:34.663 に答える
26

インライン編集ソリューションを探していて、有望と思われるプランカーを見つけましたが、箱から出してすぐには機能しませんでした。コードをいじくり回した後、私はそれを機能させました。この作品をコーディングするために最初の努力をした人への称賛。

この例は、http://plnkr.co/edit/EsW7mV?p=previewから入手できます。

コードは次のとおりです。

app.controller('MainCtrl', function($scope) {

  $scope.updateTodo = function(indx) {
    console.log(indx);
  };

  $scope.cancelEdit = function(value) {
    console.log('Canceled editing', value);
  };

  $scope.todos = [
    {id:123, title: 'Lord of the things'},
    {id:321, title: 'Hoovering heights'},
    {id:231, title: 'Watership brown'}
  ];
});

// On esc event
app.directive('onEsc', function() {
  return function(scope, elm, attr) {
    elm.bind('keydown', function(e) {
      if (e.keyCode === 27) {
        scope.$apply(attr.onEsc);
      }
    });
  };
});

// On enter event
app.directive('onEnter', function() {
  return function(scope, elm, attr) {
    elm.bind('keypress', function(e) {
      if (e.keyCode === 13) {
        scope.$apply(attr.onEnter);
      }
    });
  };
});

// Inline edit directive
app.directive('inlineEdit', function($timeout) {
  return {
    scope: {
      model: '=inlineEdit',
      handleSave: '&onSave',
      handleCancel: '&onCancel'
    },
    link: function(scope, elm, attr) {
      var previousValue;

      scope.edit = function() {
        scope.editMode = true;
        previousValue = scope.model;

        $timeout(function() {
          elm.find('input')[0].focus();
        }, 0, false);
      };
      scope.save = function() {
        scope.editMode = false;
        scope.handleSave({value: scope.model});
      };
      scope.cancel = function() {
        scope.editMode = false;
        scope.model = previousValue;
        scope.handleCancel({value: scope.model});
      };
    },
    templateUrl: 'inline-edit.html'
  };
});

ディレクティブテンプレート:

<div>
  <input type="text" on-enter="save()" on-esc="cancel()" ng-model="model" ng-show="editMode">
  <button ng-click="cancel()" ng-show="editMode">cancel</button>
  <button ng-click="save()" ng-show="editMode">save</button>
  <span ng-mouseenter="showEdit = true" ng-mouseleave="showEdit = false">
    <span ng-hide="editMode" ng-click="edit()">{{model}}</span>
    <a ng-show="showEdit" ng-click="edit()">edit</a>
  </span>
</div>

それを使用するには、水を追加するだけです。

<div ng-repeat="todo in todos" 
     inline-edit="todo.title" 
     on-save="updateTodo($index)" 
     on-cancel="cancelEdit(todo.title)"></div>

アップデート:

もう1つのオプションは、AngularJS用の既製のXeditableを使用することです。

http://vitalets.github.io/angular-xeditable/

于 2013-05-24T16:06:31.893 に答える
7

私はあなたのプランカーをangular-xeditableで動作するように変更しました:

http://plnkr.co/edit/xUDrOS?p=preview

これはインライン編集の一般的な解決策です。タグに切り替わるeditable-textディレクティブを使用してハイパーリンクを作成します。<input type="text">

<a href="#" editable-text="bday.name" ng-click="myform.$show()" e-placeholder="Name">
    {{bday.name || 'empty'}}
</a>

日付についてはeditable-date、html5に切り替えるディレクティブを使用しまし<input type="date">た。

于 2013-10-26T18:58:46.677 に答える
4

これは一般的な機能であるため、このためのディレクティブを作成することをお勧めします。実際、誰かがすでにそれを行い、それをオープンソース化しました。プロジェクトの1つでeditablespanライブラリを使用しましたが、完全に機能するため、強くお勧めします。

于 2013-10-06T10:48:07.887 に答える