angular指令通过"="不能获取数据


也不能说不能获取,但是不知道出了什么问题, scope 可以看到, 但是通过属性访问却访问不到

具体看下面代码和图片

html


 <ul widget-paginate="vm.activities"></ul>

directive.js


 var directive = {
    scope:{
        paginate : '=widgetPaginate'
    },

    link : link
}
function link(scope, ele, attrs){
    console.log(scope);
    console.log("---------directive---------");
    console.log(scope.paginate.data);
    console.log("---------directive---------");
}

图片描述

图片描述

图片描述

directive angularjs

18岁的回忆 9 years, 2 months ago

你这个数据是从后台获取的吧。
使用$watch监听一下,你就知道了,我也认为是异步的问题。

闪光天空龙 answered 9 years, 2 months ago


 var directive = {
    scope:{
        paginate : '=widgetPaginate'
    },

    link : link
}
function link(scope, ele, attrs){
    console.log(scope);
    console.log("---------directive---------");
    $timeout(console.log(scope.paginate.data));//这样应该能取得的。
    console.log("---------directive---------");
}

因为数据的异步问题

Medea answered 9 years, 2 months ago

Your Answer