내부 편집 컨텐츠 편집
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 = '';
};
});
양식을 각 노드에 넣고 각각 및 사용 ng-show
하여 ng-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
편집하는 동안 표시 할 수 있습니다. - 편집하는 동안 내용을 숨기기 위해
span
ang-hide
를 추가했습니다. - 추가
ng-click
, 즉, 다른 요소에 해당 토글 수editing
에true
ng-submit
토글editing
로 변경 되었습니다.false
여기에 업데이트 된 Plunker가 있습니다.
나는 인라인 편집 솔루션을 찾고 있었는데 유망 해 보이는 플 런커를 찾았지만 그것은 나를 위해 기본적으로 작동하지 않았습니다. 코드를 약간 수정 한 후 작동했습니다. 이 작품을 코딩하기 위해 처음에 노력한 사람에게 찬사를 보냅니다.
예제는 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>
최신 정보:
또 다른 옵션은 AngularJS 용으로 미리 만들어진 Xeditable을 사용하는 것입니다.
http://vitalets.github.io/angular-xeditable/
angular-xeditable을 통해 작동하도록 플 런커를 수정했습니다 .
http://plnkr.co/edit/xUDrOS?p=preview
It is common solution for inline editing - you creale hyperlinks with editable-text
directive that toggles into <input type="text">
tag:
<a href="#" editable-text="bday.name" ng-click="myform.$show()" e-placeholder="Name">
{{bday.name || 'empty'}}
</a>
For date I used editable-date
directive that toggles into html5 <input type="date">
.
Since this is a common piece of functionality it's a good idea to write a directive for this. In fact, someone already did that and open sourced it. I used editablespan library in one of my projects and it worked perfectly, highly recommended.
ReferenceURL : https://stackoverflow.com/questions/15453254/edit-in-place-content-editing
'UFO ET IT' 카테고리의 다른 글
Linux의 변경 사항에 대해 전체 디렉토리 트리를 모니터링하는 방법은 무엇입니까? (0) | 2021.01.13 |
---|---|
Request.Content.ReadAsMultipartAsync가 반환되지 않음 (0) | 2021.01.13 |
Razor 2에서 Razor 3 MVC 5로 (0) | 2021.01.13 |
Cygwin에 새 버전의 Python을 설치하면 Pip이 설치되지 않습니까? (0) | 2021.01.13 |
우편 배달부로 쿠키 보내기 (0) | 2021.01.13 |