javascript - Pass ng-model attribute to custom directive - Stack Overflow

So, I have a form, where I need to use a custom directive.What i need: pass the user model to the dire

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
Add a ment  | 

2 Answers 2

Reset to default 10

You 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>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743685428a4490067.html

相关推荐

  • javascript - Pass ng-model attribute to custom directive - Stack Overflow

    So, I have a form, where I need to use a custom directive.What i need: pass the user model to the dire

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信