0

angularjs のドキュメント:

myModule.directive('directiveName', function factory(injectables) {
  var directiveDefinitionObject = {
    priority: 0,
    template: '<div></div>',
    templateUrl: 'directive.html',
    replace: false,
    transclude: false,
    restrict: 'A',
    scope: false,
    compile: function compile(tElement, tAttrs, transclude) {
      return {
        pre: function preLink(scope, iElement, iAttrs, controller) { ... },
        post: function postLink(scope, iElement, iAttrs, controller) {
                         // ????
                         // is it possible to set the content of iElement?
                    }
      }
    }
  };
  return directiveDefinitionObject;
});

内のpostLink関数でcompile、テキストを ? に設定することは可能iElementですか?

私はもう試した:

iElement.html("some");
iElement.textContent = "some";
jQuery(iElement).html("some");

しかし、それらのどれも機能しなかったようです。

4

1 に答える 1

1

iElement.html("some");期待どおりに動作するはずです: http://jsfiddle.net/bmleite/vjnN7/

app.directive('someDirective', function() {
  return {
    priority: 0,
    template: '<div>Test...</div>',    
    replace: false,
    transclude: false,
    restrict: 'A',
    scope: false,
    compile: function compile(tElement, tAttrs, transclude) {
      return {
        pre: function preLink(scope, iElement, iAttrs, controller) {  },
        post: function postLink(scope, iElement, iAttrs, controller) {
                iElement.html('Some other test...');                         
             }
      }
    }
  };  
});
于 2013-01-29T10:19:59.307 に答える