admin管理员组文章数量:1341878
So, I have a form, where I need to use a custom directive.
What i need: pass the user
model to the directive.
<form>
<input type="text" ng-model="user.login">
<input type="password" ng-model="user.password">
<span ng-custom-directive ng-model="user.testfield"></span>
</form>
Directive template looks like this:
<span><input type="checkbox" ng-model="[HERE I NEED user.testfield TO WORK WITH user]"> </span>
How I can pass the user
model to directive template?
After form submit I need user.testfield
to be avaliable in the $scope.user
like:
console.log($scope.user)
{
login: 'test',
password: 'test',
testfield: true|false
}
So, I have a form, where I need to use a custom directive.
What i need: pass the user
model to the directive.
<form>
<input type="text" ng-model="user.login">
<input type="password" ng-model="user.password">
<span ng-custom-directive ng-model="user.testfield"></span>
</form>
Directive template looks like this:
<span><input type="checkbox" ng-model="[HERE I NEED user.testfield TO WORK WITH user]"> </span>
How I can pass the user
model to directive template?
After form submit I need user.testfield
to be avaliable in the $scope.user
like:
console.log($scope.user)
{
login: 'test',
password: 'test',
testfield: true|false
}
Share
asked Nov 3, 2014 at 15:44
coldmindcoldmind
5,4473 gold badges24 silver badges23 bronze badges
2 Answers
Reset to default 10You can solve it in the other way plunker
In brief:
scope: {
bindedModel: "=ngModel"
},
template: '<input type="text" ng-model="bindedModel">'
Well, I found similar question and resolved my problem in this way:
angular.module("myApp")
.directive "ngCustomDirective", () ->
restrict: 'A',
scope:
field: '@',
model: '='
template: '<span><input type="checkbox" ng-model="model[field]"></span>'
And directive usage will be:
<span ng-custom-directive
ng-bind-model="user"
ng-bind-field="testfield">
</span>
本文标签: javascriptPass ngmodel attribute to custom directiveStack Overflow
版权声明:本文标题:javascript - Pass ng-model attribute to custom directive - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743685428a2521815.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论