Domanda

Sto usando la direttiva contenteditable di JS angolare.E provo a accedere al valore del tag a utilizzando ng-model.BUT che dà indefinito.

Questo è il mio html dove uso la direttiva contenta

<span ng-switch on="editgroupChatFieldFlag" style="width: 87%;margin-right: 0;float:left;"  ng-hide="displatSessionTitleFlag==false">   
    <h5 style="float:left;margin: 7px 14px 0;margin-right: 0;">Chat Session : </h5>
    <a ng-switch-when="true" contenteditable="true" strip-br="true" ng-model="chatMessageName" style="margin-right: 0;width: 59%;margin-left: 4px;" ng-keydown="changeNameFunc($event)">{{secondPresonName}}</a>
    <a ng-switch-when="false" style="margin-right: 0;width: 59%;margin-left: 4px;">{{secondPresonName}}</a>         
</span>
.

e questa direttiva contenta

app.directive('contenteditable', function() {
    return {
      restrict: 'A', // only activate on element attribute
      require: '?ngModel', // get a hold of NgModelController
      link: function(scope, element, attrs, ngModel) {
        if(!ngModel) return; // do nothing if no ng-model

        // Specify how UI should be updated
        ngModel.$render = function() {
          element.html(ngModel.$viewValue || '');
        };

        // Listen for change events to enable binding
        element.on('blur keyup change', function() {
          scope.$apply(read);
        });
        read(); // initialize
        // Write data to the model
        function read() {
          var html = element.html();
          // When we clear the content editable the browser leaves a <br> behind
          // If strip-br attribute is provided then we strip this out
          if( attrs.stripBr && html == '<br>' ) {
            html = '';
          }
          ngModel.$setViewValue(html);
        }
      }
    };
  });
.

Qualcuno può dirmi come ottengo il valore del tag a usando il modello NG.

È stato utile?

Soluzione

Hai a che fare con un problema di ambito (ng-switch crea un ambito figlio).È necessario utilizzare . o $parent.

Esempio con $parent Aggiornamento NG-Modello da utilizzare $parent.chatMessageName:

<a ng-switch-default contenteditable="true" 
   strip-br="true" 
   ng-model="$parent.chatMessageName" >Enter</a>
.

Esempio con dot/object: JS

--controller
$scope.myType = {
    chatMessageName: ''
};
.

HTML:

<!-- html -->
<a ng-switch-default 
   contenteditable="true" 
   strip-br="true" 
   ng-model="myType.chatMessageName" >Enter</a>
<a>{{"Text "+ myType.chatMessageName}}</a> 
.

Educa te stesso: https://github.com/angular/angular.js/ Wiki / Comprensione-Scopes


.

nota laterale : Quando si posta la domanda: includi il violino nella tua domanda (non il commento) e rimuovere il codice non necessario e il formato in modo che sia più leggibile.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top