Yönergeyi oluşturan öğe ile aynı ng-modeli ile bir giriş alanı oluşturacak bir yönerge oluşturmaya çalışıyorum.
Şimdiye kadar bulduğum şey:
HTML
<!doctype html>
<html ng-app="plunker" >
<head>
<meta charset="utf-8">
<title>AngularJS Plunker</title>
<link rel="stylesheet" href="style.css">
<script>document.write("<base href=\"" + document.location + "\" />");</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.js"></script>
<script src="app.js"></script>
</head>
<body ng-controller="MainCtrl">
This scope value <input ng-model="name">
<my-directive ng-model="name"></my-directive>
</body>
</html>
JavaScript
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.name = "Felipe";
});
app.directive('myDirective', function($compile) {
return {
restrict: 'E',
scope: {
ngModel: '='
},
template: '<div class="some"><label for="{{id}}">{{label}}</label>' +
'<input id="{{id}}" ng-model="value"></div>',
replace: true,
require: 'ngModel',
link: function($scope, elem, attr, ctrl) {
$scope.label = attr.ngModel;
$scope.id = attr.ngModel;
console.debug(attr.ngModel);
console.debug($scope.$parent.$eval(attr.ngModel));
var textField = $('input', elem).
attr('ng-model', attr.ngModel).
val($scope.$parent.$eval(attr.ngModel));
$compile(textField)($scope.$parent);
}
};
});
Bununla birlikte, bu senaryoyu işlemenin doğru yolu olduğundan emin değilim ve kontrolümün ng-model hedef alanının değeri ile başlatılmadığı bir hata var.
Yukarıdaki kodun bir Dalgıç: http://plnkr.co/edit/IvrDbJ
Bunu yapmanın doğru yolu nedir?
EDIT : ng-model="value"
şablondan kaldırdıktan sonra , bu iyi çalışıyor gibi görünüyor. Ancak, bu soruyu açık tutacağım çünkü bunu doğru bir şekilde kontrol etmek istiyorum.
scope
ve olarak ayarlarsanız ne olurscope: false
?ng-model
Bu durumda nasıl bağlanılır ?