javascript – Angularjs – 使用指令来实例化其他指令?

所以让我们在我的 HTML中说我有这样的东西:
<tabcontent></tabcontent>

那么这个指令的javascript就是这样的:

tabsApp.directive('tabcontent',function(){

  var myObj = {
    priority:0,template:'<div></div>',replace: true,controller: 'TabCtrl',transclude: false,restrict: 'E',scope: false,compile: function (element,attrs){
      return function (parentScope,instanceEle){
        parentScope.$watch('type',function(val) {
          element.html('<div '+val+'></div>');
        });
      }
      $compile(parentScope);
    },link: function postLink(scope,iElement,iAttrs){}
  };
  return myObj;

});

HTML被正确解析,类型的值在控制器JS中找到.

so <tabcontent></tabcontent> is replaced with <div recipe></div> for example..

(那部分确实发生了)

所以我也有一个配方的指令:

tabsApp.directive('recipe',template:'<div>TESTING</div>',attrs){
      return {
        pre: function preLink(scope,iAttrs,controller){},post: function postLink(scope,controller){}
      }
    },iAttrs){}
  };
  return myObj;

});

这显然很简单,只是为了测试.但是配方指令没有被处理…

这里发生了什么?

解决方法

你需要改变2件事情:

>配方指令不能限于E(元素).如果要生成< div recipe>< / div>之类的指令,则至少必须在指令配置上的restrict属性添加A(属性):

app.directive('recipe',function() {
   return {
      restrict: 'E',...

>您需要在’watch’之后编译tabcontent指令的HTML内容

app.directive('tabcontent',function($compile){
   return {    
   ...    
   link: function (scope,iAttrs) {
            scope.$watch('type',function(val) {
               iElement.html('<div '+val+'></div>');           
               $compile(iElement.contents())(scope);         
             });
         }
   ...

jsFiddle:http://jsfiddle.net/bmleite/n2BXp/

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ &quot;TOC&quot; 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...